Files
nairobi/app/assets/javascripts/sortable.js.coffee
2019-09-11 01:56:27 +02:00

18 lines
557 B
CoffeeScript

App.Sortable =
initialize: ->
$(".sortable").sortable
update: ->
new_order = $(this).sortable("toArray", { attribute: "data-answer-id" })
$.ajax
url: $(".sortable").data("js-url"),
data: { ordered_list: new_order },
type: "POST"
$(".sortable-priotirized-votation").sortable
update: ->
new_order = $(this).sortable("toArray", { attribute: "data-answer-id" })
$.ajax
url: $(this).data("js-url"),
data: { ordered_list: new_order },
type: "POST"