(opts: DDDroppableOpt)
| 82 | } |
| 83 | |
| 84 | public setupDroppable(opts: DDDroppableOpt): DDElement { |
| 85 | if (!this.ddDroppable) { |
| 86 | this.ddDroppable = new DDDroppable(this.el, opts); |
| 87 | } else { |
| 88 | this.ddDroppable.updateOption(opts); |
| 89 | } |
| 90 | return this; |
| 91 | } |
| 92 | |
| 93 | public cleanDroppable(): DDElement { |
| 94 | if (this.ddDroppable) { |
no test coverage detected