Skip to content

Instantly share code, notes, and snippets.

@rofr
Last active December 15, 2015 11:09
Show Gist options
  • Save rofr/5250761 to your computer and use it in GitHub Desktop.
Save rofr/5250761 to your computer and use it in GitHub Desktop.
$(function(){
// ----------------------------------------------------------------------------------------------
// set up drag and drop reordering using jquery-ui sortable function
// ----------------------------------------------------------------------------------------------
$("#sortable").sortable(
{
axis:'y',
containment:'#list-items-container',
handle:'.drag-handle'
}
);
$("#sortable").disableSelection();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment