From 0cc0c5163eefd90b8cdcb3193a330571e041b9cb Mon Sep 17 00:00:00 2001 From: RubaXa Date: Sat, 4 Jan 2014 15:38:42 +0400 Subject: [PATCH] * dragabble -> draggable --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ab06ac1..96714a1 100644 --- a/index.html +++ b/index.html @@ -273,7 +273,7 @@ new Sortable(bar, { group: "omega" }); var container = document.getElementById("multi"); var sort = new Sortable(container, { handle: ".tile__title", // Restricts sort start click/touch to the specified element - dragabble: ".tile", // Specifies which items inside the element should be sortable + draggable: ".tile", // Specifies which items inside the element should be sortable onUpdate: function (evt/**Event*/){ var item = evt.item; // the current dragged HTMLElement }