Files
grecia/app/assets/javascripts/sortable.js.coffee
Javi Martín 86e704d8a4 Use strict mode in JavaScript
Strict mode is supported by 98% of the browsers, including Internet
Explorer 10, and it helps developers avoid common JavaScript pitfalls.
2019-09-11 03:14:17 +02:00

20 lines
571 B
CoffeeScript

"use strict"
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"