@internal true if element matches the string/method accept option
(el: HTMLElement)
| 154 | |
| 155 | /** @internal true if element matches the string/method accept option */ |
| 156 | protected _canDrop(el: HTMLElement): boolean { |
| 157 | return el && (!this.accept || this.accept(el)); |
| 158 | } |
| 159 | |
| 160 | /** @internal */ |
| 161 | protected _setupAccept(): DDDroppable { |
no outgoing calls
no test coverage detected