* Returns the container element of the editor. The container element includes * all the elements added to the page for the editor. Such as UI, iframe, etc. * * @method getContainer * @return {Element} HTML DOM element for the editor container.
()
| 974 | * @return {Element} HTML DOM element for the editor container. |
| 975 | */ |
| 976 | public getContainer(): HTMLElement { |
| 977 | const self = this; |
| 978 | |
| 979 | if (!self.container) { |
| 980 | self.container = self.editorContainer || DOM.get(self.id + '_parent') as HTMLElement; |
| 981 | } |
| 982 | |
| 983 | return self.container; |
| 984 | } |
| 985 | |
| 986 | /** |
| 987 | * Returns the content area container element of the editor. This element |
no test coverage detected