## 本项目对neditor的调整
- 2019-04-02 调整拖拽文件到编辑器中时，自动上传文件到服务器上对返回格式的修改。
```js
if (json.state == "SUCCESS" && json.url) {
```
改为
```js
if (json.status == 1 && (json.path || json.url)) {
```
```js
var link = urlPrefix + data.url
```
改为
```js
var link = urlPrefix + (data.path || data.url)
```

- 2019-03-23 编辑器自动排版中的清除格式功能，将清理掉元素中冗余的样式信息
```
  特征字符串： me.commands["autotypeset"] = {
  加入如下代码：
  if (opt.removeClass) {
    me.execCommand('autoformat')
  }
  
```
- 2018-07-10 跳转源码模式显示宽度
  17942行 "position:absolute;left:0;top:0;width:100%;height:100%;";  修改为  editor.options.frameBodyWidth ? "position:relative;border:solid 1px #eee;margin:8px auto;box-sizing:content-box;padding-right:11px;width:" + editor.options.frameBodyWidth + "px;height:100%;" : "position:relative;left:0;top:0;width:100%;height:100%;";
- 2018-06-13 处理编辑器全屏后边框高度问题
  neditor.all.js 32810行  添加如下代码：
  ```
  var oriHeight = me.editor.body.style.height
  if(oriHeight !== 'auto') {
    me.editor.body.style.minHeight = oriHeight
  }
  me.editor.body.style.height = 'auto'
  ```
  neditor.all.js 7577行  修改 ".view{padding:0 5px;word-wrap:break-word;cursor:text;height:90%;}\n" + 为 ".view{padding:0 5px;word-wrap:break-word;cursor:text;min-height:90%;}\n" +
- 2018-6-12 修改编辑器样式，涉及以下文件
  neditor.all.js 7579行 "body{margin:8px 46px 8px 45px;border:1px solid #eee;font-family:sans-serif;font-size:16px;}" + 
        改为 "body{margin: 8px auto;border:1px solid #eee;font-family:sans-serif;font-size:16px;width:"+options.frameBodyWidth+"px;}" +

- 2018-6-11 修改编辑器样式，涉及以下文件
  neditor.all.js 19319行 me.body.style.height = currentHeight + "px"; 改为 me.body.style.height = currentHeight- 10 + "px";
  neditor.all.js 19320行 lastHeight = currentHeight; 改为 lastHeight = currentHeight - 10;

- 2018-6-1 修改编辑器样式,涉及以下文件
  neditor.all.js 7576行 padding:0; 改为 padding:0 5px;
  neditor.all.js 7579行 margin:8px 51px 8px 50px; 改为 margin:8px 46px 8px 45px;
  
- 2018-6-1 修改编辑器样式,涉及以下文件
  neditor.all.js 7579行 margin: 8px; 改为 margin:8px 51px 8px 50px;border:1px solid #eee;

- 2018-5-18 添加表格和图片对齐操作按钮样式图标， 涉及以下文件 
  themes\notadd\css\neditor.css

- 2018-5-18 添加鼠标右击插入批注的功能
  neditor.all.js 24486行 通过鼠标右击插入批注; 
  
- 2018-4-25 支持中文有序列表
  neditor.all.js 16564行 通过样式给有序列表添加汉字; 

- 2018-4-17 修复快速切换带有编辑器的路由页面控制台报错  ，涉及以下文件
  neditor.all.js 19258行 里面的 var node = me.body.lastChild; 改为 var node = me.body ? me.body.lastChild : ''; 
          
- 2018-4-12 更换ok和cancel按钮位置  ，涉及以下文件
  neditor.all.js 31320行 里面的 ok和cancel按钮位置  

- 2018-4-9 更换gif图标为svg图标，涉及以下文件
  neditor.all.js 31010行 里面的 svg图形数据  


- 2018-4-4 工具栏图标大小由 26px改为32px，涉及以下文件  
  themes\notadd\css\neditor.css

- 2018-3-22 便换“查找替换”的图标，涉及以下文件  
  neditor.all.js 里面的 svg图形数据  
  neditor.all.min.js 里面的 svg图形数据  
  dialogs\fonts\iconfont.svg  里面的 svg图形数据  
  themes\notadd\css\neditor.css  鼠标移入按钮时隐藏svg换为用woff显示的特性去掉  
  themes\notadd\fonts\iconfont.js  里面的 svg图形数据  
  themes\notadd\fonts\iconfont.svg  里面的 svg图形数据  
  