Remove trailing semicolons in CoffeeScript files

This commit is contained in:
Javi Martín
2019-03-04 13:43:12 +01:00
parent d963657e41
commit af9dce1dcf
10 changed files with 42 additions and 42 deletions

View File

@@ -2,7 +2,7 @@ App.Sortable =
initialize: ->
$(".sortable").sortable
update: (event, ui) ->
new_order = $(this).sortable('toArray', { attribute: 'data-answer-id' });
new_order = $(this).sortable('toArray', { attribute: 'data-answer-id' })
$.ajax
url: $('.sortable').data('js-url'),
data: { ordered_list: new_order },