aboutsummaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/category.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/p/scripts/category.js b/p/scripts/category.js
index 29c049924..eb08ecd6e 100644
--- a/p/scripts/category.js
+++ b/p/scripts/category.js
@@ -6,17 +6,19 @@ var loading = false,
dnd_successful = false;
function dragend_process(t) {
- t.style.display = 'none';
+ t.setAttribute('draggable', 'false');
if (loading) {
window.setTimeout(function() {
dragend_process(t);
}, 50);
+ return;
}
if (!dnd_successful) {
- t.style.display = 'block';
- t.style.opacity = 1.0;
+ t.style.display = '';
+ t.style.opacity = '';
+ t.setAttribute('draggable', 'true');
} else {
var parent = $(t.parentNode);
$(t).remove();