()
| 46 | |
| 47 | class QuickToolsManager { |
| 48 | constructor() { |
| 49 | this.container = <div id="quicktools-settings"></div>; |
| 50 | this.longPressTimer = null; |
| 51 | this.dragState = null; |
| 52 | this.render(); |
| 53 | this.bindEvents(); |
| 54 | } |
| 55 | |
| 56 | getContainer() { |
| 57 | return this.container; |
nothing calls this directly
no test coverage detected