Lines Matching refs:textarea
43 this.settings = {show:{matches:false, textarea:false}}; property
50 this.textarea = null; // The textarea element
69 this.textarea = moaiEditor.layout.textarea;
86 this.copyStyle(this.textarea, this.content);
98 if (!this.settings.show.textarea)
99 …this.textarea.style.color = 'rgba(0,0,0,0.01)'; // Firefox will "optimize out" a smooth scroll…
117 this.watcher.lines = moaiEditor.layout.textarea.value.split("\n");
184 moaiEditor.layout.elements.textarea.wrap = value;
185 dw_editor.setWrap (moaiEditor.layout.elements.textarea, value);
191 this.textarea.style.pointerEvents = 'auto';
193 this.textarea.style.pointerEvents = 'none';
220 return this.textarea.value;
232 this.mirror.scrollTop = this.textarea.scrollTop;
233 this.content.scrollLeft = this.textarea.scrollLeft;
266 this.copyStyle(this.textarea, this.content);
273 this.textarea.scrollTop = this.mirror.scrollTop;
440 return moaiEditor.scroll.tools.getMaxScrollY(this.outer.textarea);
471 return this.outer.textarea.scrollTop;
476 this.outer.textarea.scrollTop = value;
488 …this.outer.textarea.style.scrollBehavior = value; // This was commented before to avoid Firefo…
496 const scroll = Math.floor(this.outer.textarea.scrollTop);
497 const maxScroll = moaiEditor.scroll.tools.getMaxScrollY(this.outer.textarea);