(opts: DDResizableOpt)
| 65 | } |
| 66 | |
| 67 | public setupResizable(opts: DDResizableOpt): DDElement { |
| 68 | if (!this.ddResizable) { |
| 69 | this.ddResizable = new DDResizable(this.el, opts); |
| 70 | } else { |
| 71 | this.ddResizable.updateOption(opts); |
| 72 | } |
| 73 | return this; |
| 74 | } |
| 75 | |
| 76 | public cleanResizable(): DDElement { |
| 77 | if (this.ddResizable) { |
no test coverage detected