Jelajahi Sumber

Minor JavaScript problems with drag & drop

Independent of the jQuery update
Alexandre Alapetite 9 tahun lalu
induk
melakukan
396ebb0fd2
1 mengubah file dengan 5 tambahan dan 3 penghapusan
  1. 5 3
      p/scripts/category.js

+ 5 - 3
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();