diff --git a/src/app/index.coffee b/src/app/index.coffee index 0002f2c184..c637746ac0 100644 --- a/src/app/index.coffee +++ b/src/app/index.coffee @@ -57,11 +57,11 @@ ready (model) -> list = model.at "_#{type}List" # Make the list draggable using jQuery UI - ul = $("\##{type}s") + ul = $(".#{type}s ul") ul.sortable handle: '.handle' axis: 'y' - containment: "\#dragbox-#{type}" + # containment: ".#{type}s .dragbox" update: (e, ui) -> item = ui.item[0] domId = item.id diff --git a/views/app/index.html b/views/app/index.html index 9458e9925a..685f213bf5 100644 --- a/views/app/index.html +++ b/views/app/index.html @@ -46,7 +46,7 @@ -