diff --git a/_assets/_old/js/listing.js b/_assets/_old/js/listing.js index b56046d2..60cb0ed6 100644 --- a/_assets/_old/js/listing.js +++ b/_assets/_old/js/listing.js @@ -80,31 +80,6 @@ listing.addDoubleTapEvent = function () { }) } -listing.moveMakeItem = function (url, name) { - let node = document.createElement('li'), - count = 0 - - node.dataset.url = url - node.innerHTML = name - node.setAttribute('aria-selected', false) - - node.addEventListener('dblclick', listing.moveDialogNext) - node.addEventListener('click', listing.selectMoveFolder) - node.addEventListener('touchstart', event => { - count++ - - setTimeout(() => { - count = 0 - }, 300) - - if (count > 1) { - listing.moveDialogNext(event) - } - }) - - return node -} - listing.moveSelected = function (event) { event.preventDefault() diff --git a/_assets/src/components/MovePrompt.vue b/_assets/src/components/MovePrompt.vue index c613262b..60a58369 100644 --- a/_assets/src/components/MovePrompt.vue +++ b/_assets/src/components/MovePrompt.vue @@ -4,7 +4,7 @@

Choose new house for your file(s)/folder(s):

Currently navigating on: {{ current }}.

@@ -18,6 +18,7 @@