Lines Matching refs:outer
434 constructor (outer) { argument
435 this.outer = outer;
441 return moaiEditor.scroll.tools.getMaxScrollY(this.outer.textarea);
445 return this.outer.mirror.scrollHeight;
472 return this.outer.textarea.scrollTop;
476 this.outer.mirror.scrollTop = value;
477 this.outer.textarea.scrollTop = value;
488 this.outer.mirror.style.scrollBehavior = value;
489 …this.outer.textarea.style.scrollBehavior = value; // This was commented before to avoid Firefo…
497 const scroll = Math.floor(this.outer.textarea.scrollTop);
498 const maxScroll = moaiEditor.scroll.tools.getMaxScrollY(this.outer.textarea);