Lines Matching refs:container
36 this.container = null; // Codemirror container element (.Codemirror)
126 this.container = this.element('container');
127 this.scroller = this.container.querySelector(".CodeMirror-scroll");
130 this.container.querySelector(".CodeMirror-sizer").appendChild(this.dirty);
132 this.editor = this.container.CodeMirror;
134 this.container.style.position = 'absolute';
135 this.container.style.top = '0';
136 this.container.style.left = '0';
137 this.container.style.width = '100%';
138 this.container.style.height = '100%';
139 this.container.style.border = 'none';
140 this.container.style.margin = '0';
152 new ResizeObserver(this.onResize.bind(this)).observe(this.container);
195 this.container.style.pointerEvents = 'auto';
197 this.container.style.pointerEvents = 'none';
295 const container = this.element('container');
296 const editor = container.CodeMirror;