bulk-operations v0.1 add the Drag & Drop UI Ghost , styled scrollbar

This commit is contained in:
Milos Holba
2020-11-28 15:56:12 +01:00
parent f33fe84350
commit 8e01b837a2
6 changed files with 210 additions and 114 deletions
+7
View File
@@ -97,3 +97,10 @@ var vueFileManager = new Vue({
},
render: (h) => h(App),
}).$mount("#app");
document.addEventListener('drag', (event) => {
let multiSelect = document.getElementById('multi-select-ui')
multiSelect.style.top = event.clientY +25 + 'px'
multiSelect.style.left = event.clientX - 50 + 'px'
},false)