guy 7 years ago
parent
commit
df914daf8d
  1. 6
      src/base/single/editor/editor.code.js

6
src/base/single/editor/editor.code.js

@ -10,7 +10,8 @@ BI.CodeEditor = BI.inherit(BI.Single, {
baseCls: 'bi-code-editor bi-card', baseCls: 'bi-code-editor bi-card',
value: '', value: '',
watermark: "", watermark: "",
lineHeight: 2 lineHeight: 2,
readOnly: false
}); });
}, },
_init: function () { _init: function () {
@ -19,7 +20,8 @@ BI.CodeEditor = BI.inherit(BI.Single, {
this.editor = CodeMirror(this.element[0], { this.editor = CodeMirror(this.element[0], {
textWrapping: true, textWrapping: true,
lineWrapping: true, lineWrapping: true,
lineNumbers: false lineNumbers: false,
readOnly: o.readOnly
}); });
o.lineHeight === 1 ? this.element.addClass("codemirror-low-line-height") : this.element.addClass("codemirror-high-line-height"); o.lineHeight === 1 ? this.element.addClass("codemirror-low-line-height") : this.element.addClass("codemirror-high-line-height");
this.editor.on("change", function (cm, change) { this.editor.on("change", function (cm, change) {

Loading…
Cancel
Save