fay 6 years ago
parent
commit
d738c6ef01
  1. 4
      dist/_fineui.min.js
  2. 9
      dist/bundle.js
  3. 36
      dist/bundle.min.js
  4. 9
      dist/case.js
  5. 9
      dist/fineui.js
  6. 4
      dist/fineui.min.js
  7. 2
      src/case/richeditor/niceditor/niceditor.js
  8. 7
      src/case/richeditor/richeditor.js

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/bundle.js vendored

@ -83841,7 +83841,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
}
this.ne.fireEvent("keyup", e);
if (e.keyCode !== 8 && e.type !== "focus") {
if (e.keyCode !== 8) {
return;
}
var newLine;
@ -84809,7 +84809,12 @@ BI.RichEditor = BI.inherit(BI.Widget, {
el: BI.extend({
type: "bi.rich_editor_text_toolbar",
editor: this.editor
}, o.toolbar),
}, o.toolbar, {
ref: function (_ref) {
self.editor.bindToolbar(_ref);
o.toolbar.ref && o.toolbar.ref(_ref);
}
}),
height: 34,
stopPropagation: false,
stopEvent: false

36
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/case.js vendored

@ -11152,7 +11152,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
}
this.ne.fireEvent("keyup", e);
if (e.keyCode !== 8 && e.type !== "focus") {
if (e.keyCode !== 8) {
return;
}
var newLine;
@ -12120,7 +12120,12 @@ BI.RichEditor = BI.inherit(BI.Widget, {
el: BI.extend({
type: "bi.rich_editor_text_toolbar",
editor: this.editor
}, o.toolbar),
}, o.toolbar, {
ref: function (_ref) {
self.editor.bindToolbar(_ref);
o.toolbar.ref && o.toolbar.ref(_ref);
}
}),
height: 34,
stopPropagation: false,
stopEvent: false

9
dist/fineui.js vendored

@ -84062,7 +84062,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
}
this.ne.fireEvent("keyup", e);
if (e.keyCode !== 8 && e.type !== "focus") {
if (e.keyCode !== 8) {
return;
}
var newLine;
@ -85030,7 +85030,12 @@ BI.RichEditor = BI.inherit(BI.Widget, {
el: BI.extend({
type: "bi.rich_editor_text_toolbar",
editor: this.editor
}, o.toolbar),
}, o.toolbar, {
ref: function (_ref) {
self.editor.bindToolbar(_ref);
o.toolbar.ref && o.toolbar.ref(_ref);
}
}),
height: 34,
stopPropagation: false,
stopEvent: false

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/case/richeditor/niceditor/niceditor.js

@ -320,7 +320,7 @@
}
this.ne.fireEvent("keyup", e);
if (e.keyCode !== 8 && e.type !== "focus") {
if (e.keyCode !== 8) {
return;
}
var newLine;

7
src/case/richeditor/richeditor.js

@ -69,7 +69,12 @@ BI.RichEditor = BI.inherit(BI.Widget, {
el: BI.extend({
type: "bi.rich_editor_text_toolbar",
editor: this.editor
}, o.toolbar),
}, o.toolbar, {
ref: function (_ref) {
self.editor.bindToolbar(_ref);
o.toolbar.ref && o.toolbar.ref(_ref);
}
}),
height: 34,
stopPropagation: false,
stopEvent: false

Loading…
Cancel
Save