Added contact offers.
[readifood.git] / www / jquery.sortable.js
1 $(function() {
2  $(".sortable").sortable({
3    axis: "y",
4    containment: "parent",
5    placeholder: "sortplaceholder",
6    forcePlaceholderSize: true,
7    start: function( event, ui ) { ui.item.addClass('sortdragging'); },
8    stop: function( event, ui ) { ui.item.removeClass('sortdragging'); },
9  });
10  $(".sortable").disableSelection();
11 });