wizips
Results
1
comments of
wizips
You can do something like this: 1. Add in app.component.ts: ``` this._dragulaService.drag.subscribe((result) => { if (document.body.classList.contains(`cloned-copy`)) { document.body.classList.add('noDropDocument'); } else { result[1].classList.add(`${result[0]}-dropAllowed`); } }); this._dragulaService.over.subscribe((result) => { if (result[2].classList.contains(`${result[0]}-dropAllowed`)) {...