7 lines
172 B
CoffeeScript
7 lines
172 B
CoffeeScript
jQuery ->
|
|
$('#product-category-list').sortable
|
|
axis: 'y'
|
|
handle: '.handle'
|
|
update: ->
|
|
$.post($(this).data('update-url'), $(this).sortable('serialize'))
|