some changes to test droppable

This commit is contained in:
Chris
2018-02-16 15:15:22 +00:00
parent b1660c92cc
commit 35085248b6
3 changed files with 24 additions and 2 deletions

11
public/js/app.js vendored
View File

@@ -59,6 +59,17 @@ $.when( $.ready ).then(function() {
});
$("#sortable").sortable("disable");
$(".item-container").droppable({
tolerance: "pointer",
drop: function( event, ui ) {
alert($( this ).data('id'));
alert($( ui.draggable ).data('id'));
$( this )
.addClass( "ui-state-highlight" )
}
});
$('#app').on('click', '#config-button', function(e) {
e.preventDefault();