(el: GridStackElement, opts: DDDragOpt)
| 145 | } |
| 146 | |
| 147 | public dragIn(el: GridStackElement, opts: DDDragOpt): DDGridStack { |
| 148 | this._getDDElements(el).forEach(dEl => dEl.setupDraggable(opts)); |
| 149 | return this; |
| 150 | } |
| 151 | |
| 152 | public droppable(el: GridItemHTMLElement, opts: DDOpts | DDDropOpt, key?: DDKey, value?: DDValue): DDGridStack { |
| 153 | if (typeof opts.accept === 'function' && !opts._accept) { |
no test coverage detected