As we do in the rest of the application. Note we cannot add a rule enforcing double quotes because CoffeeScript Lint does not have such rule.
10 lines
299 B
CoffeeScript
10 lines
299 B
CoffeeScript
App.Sortable =
|
|
initialize: ->
|
|
$(".sortable").sortable
|
|
update: (event, ui) ->
|
|
new_order = $(this).sortable("toArray", { attribute: "data-answer-id" })
|
|
$.ajax
|
|
url: $(".sortable").data("js-url"),
|
|
data: { ordered_list: new_order },
|
|
type: "POST"
|