Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
cavy / app / assets / javascripts / cavy / sortable.js.coffee
Size: Mime:
jQuery ->
  if ($('#item_group_items').length > 0)
    $("#item_group_items tbody").sortable({
      axis: 'y',
      update: ->
        $.post($('#item_group_items').data('update-url'), $(this).sortable('serialize'))
    }).disableSelection();