Browse Source

BI-27617

es6
windy 6 years ago
parent
commit
b780fe897f
  1. 8
      dist/_fineui.min.js
  2. 3
      dist/bundle.js
  3. 8
      dist/bundle.min.js
  4. 3
      dist/case.js
  5. 3
      dist/fineui.js
  6. 8
      dist/fineui.min.js
  7. 3
      src/case/richeditor/bar/action.richeditor.js

8
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/bundle.js vendored

@ -83050,6 +83050,9 @@ BI.RichEditorAction = BI.inherit(BI.Widget, {
},
doCommand: function (args) {
// 执行命令前先恢复选区
this.options.editor.instance.restoreRng();
if (this.options.command) {
this.options.editor.nicCommand(this.options.command, args);
}

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/case.js vendored

@ -10494,6 +10494,9 @@ BI.RichEditorAction = BI.inherit(BI.Widget, {
},
doCommand: function (args) {
// 执行命令前先恢复选区
this.options.editor.instance.restoreRng();
if (this.options.command) {
this.options.editor.nicCommand(this.options.command, args);
}

3
dist/fineui.js vendored

@ -83299,6 +83299,9 @@ BI.RichEditorAction = BI.inherit(BI.Widget, {
},
doCommand: function (args) {
// 执行命令前先恢复选区
this.options.editor.instance.restoreRng();
if (this.options.command) {
this.options.editor.nicCommand(this.options.command, args);
}

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
src/case/richeditor/bar/action.richeditor.js

@ -86,6 +86,9 @@ BI.RichEditorAction = BI.inherit(BI.Widget, {
},
doCommand: function (args) {
// 执行命令前先恢复选区
this.options.editor.instance.restoreRng();
if (this.options.command) {
this.options.editor.nicCommand(this.options.command, args);
}

Loading…
Cancel
Save