mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-22 21:56:53 +00:00
Lists sortable, but not persisting
This commit is contained in:
parent
36bbd6a222
commit
d49dcc4ace
2 changed files with 3 additions and 3 deletions
|
|
@ -57,11 +57,11 @@ ready (model) ->
|
|||
list = model.at "_#{type}List"
|
||||
|
||||
# Make the list draggable using jQuery UI
|
||||
ul = $("\##{type}s")
|
||||
ul = $(".#{type}s ul")
|
||||
ul.sortable
|
||||
handle: '.handle'
|
||||
axis: 'y'
|
||||
containment: "\#dragbox-#{type}"
|
||||
# containment: ".#{type}s .dragbox"
|
||||
update: (e, ui) ->
|
||||
item = ui.item[0]
|
||||
domId = item.id
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<div class=dailies>
|
||||
<div class=dailys>
|
||||
<h1>Dailies</h1>
|
||||
<div class=dragbox></div>
|
||||
<div class=content>
|
||||
|
|
|
|||
Loading…
Reference in a new issue