(opts: DDDragOpt)
| 48 | } |
| 49 | |
| 50 | public setupDraggable(opts: DDDragOpt): DDElement { |
| 51 | if (!this.ddDraggable) { |
| 52 | this.ddDraggable = new DDDraggable(this.el, opts); |
| 53 | } else { |
| 54 | this.ddDraggable.updateOption(opts); |
| 55 | } |
| 56 | return this; |
| 57 | } |
| 58 | |
| 59 | public cleanDraggable(): DDElement { |
| 60 | if (this.ddDraggable) { |
no test coverage detected