mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
30 lines
No EOL
737 B
CoffeeScript
30 lines
No EOL
737 B
CoffeeScript
# Place all the behaviors and hooks related to the matching controller here.
|
|
# All this logic will automatically be available in application.js.
|
|
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
|
|
|
|
$(document).ready ->
|
|
$("#habits").sortable
|
|
axis: "y"
|
|
dropOnEmpty: false
|
|
cursor: "move"
|
|
items: "li"
|
|
opacity: 0.4
|
|
scroll: true
|
|
update: ->
|
|
$.ajax
|
|
type: "post"
|
|
data: $("#habits").sortable("serialize")
|
|
dataType: "script"
|
|
complete: (request) ->
|
|
$("#habits").effect "highlight"
|
|
|
|
url: "/habits/sort"
|
|
|
|
(($) ->
|
|
$.fn.highlight = ->
|
|
$(this).css
|
|
color: "red"
|
|
background: "yellow"
|
|
|
|
$(this).fadeIn()
|
|
) jQuery |