windy 6 years ago
parent
commit
1326017a1b
  1. 2
      dist/_fineui.min.js
  2. 9
      dist/bundle.js
  3. 8
      dist/bundle.min.js
  4. 9
      dist/case.js
  5. 9
      src/case/richeditor/niceditor/niceditor.js

2
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/bundle.js vendored

@ -82774,10 +82774,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
BI.createWidget({ BI.createWidget({
type: "bi.vertical", type: "bi.vertical",
element: this, element: this,
items: [{ items: [this.instance = this.addInstance()]
type: "bi.layout",
height: 1
}, this.instance = this.addInstance()]
}); });
}, },
@ -82785,7 +82782,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
var o = this.options; var o = this.options;
var conf = { var conf = {
ne: this, ne: this,
height: o.height - 1, height: o.height,
maxHeight: o.maxHeight ? o.maxHeight : null maxHeight: o.maxHeight ? o.maxHeight : null
}; };
if (this.element[0].contentEditable || !!window.opera) { if (this.element[0].contentEditable || !!window.opera) {
@ -82856,7 +82853,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
scrollable: false scrollable: false
}); });
this.elm.element.css({ this.elm.element.css({
minHeight: (o.height - 8) + "px", minHeight: BI.isNumber(o.height) ? (o.height - 8) + "px" : o.height,
outline: "none" outline: "none"
}).html(o.value); }).html(o.value);

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/case.js vendored

@ -10325,10 +10325,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
BI.createWidget({ BI.createWidget({
type: "bi.vertical", type: "bi.vertical",
element: this, element: this,
items: [{ items: [this.instance = this.addInstance()]
type: "bi.layout",
height: 1
}, this.instance = this.addInstance()]
}); });
}, },
@ -10336,7 +10333,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
var o = this.options; var o = this.options;
var conf = { var conf = {
ne: this, ne: this,
height: o.height - 1, height: o.height,
maxHeight: o.maxHeight ? o.maxHeight : null maxHeight: o.maxHeight ? o.maxHeight : null
}; };
if (this.element[0].contentEditable || !!window.opera) { if (this.element[0].contentEditable || !!window.opera) {
@ -10407,7 +10404,7 @@ BI.shortcut("bi.rich_editor_text_toolbar", BI.RichEditorTextToolbar);/**
scrollable: false scrollable: false
}); });
this.elm.element.css({ this.elm.element.css({
minHeight: (o.height - 8) + "px", minHeight: BI.isNumber(o.height) ? (o.height - 8) + "px" : o.height,
outline: "none" outline: "none"
}).html(o.value); }).html(o.value);

9
src/case/richeditor/niceditor/niceditor.js

@ -19,10 +19,7 @@
BI.createWidget({ BI.createWidget({
type: "bi.vertical", type: "bi.vertical",
element: this, element: this,
items: [{ items: [this.instance = this.addInstance()]
type: "bi.layout",
height: 1
}, this.instance = this.addInstance()]
}); });
}, },
@ -30,7 +27,7 @@
var o = this.options; var o = this.options;
var conf = { var conf = {
ne: this, ne: this,
height: o.height - 1, height: o.height,
maxHeight: o.maxHeight ? o.maxHeight : null maxHeight: o.maxHeight ? o.maxHeight : null
}; };
if (this.element[0].contentEditable || !!window.opera) { if (this.element[0].contentEditable || !!window.opera) {
@ -101,7 +98,7 @@
scrollable: false scrollable: false
}); });
this.elm.element.css({ this.elm.element.css({
minHeight: (o.height - 8) + "px", minHeight: BI.isNumber(o.height) ? (o.height - 8) + "px" : o.height,
outline: "none" outline: "none"
}).html(o.value); }).html(o.value);

Loading…
Cancel
Save