-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdrag-sort-list.hbs
More file actions
26 lines (26 loc) · 920 Bytes
/
drag-sort-list.hbs
File metadata and controls
26 lines (26 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{#vertical-collection
items
estimateHeight=estimateHeight
staticHeight=false
renderAll=lazyRenderDisabled as |item index|
}}
<div>
{{#drag-sort-item
additionalArgs = additionalArgs
item = item
index = index
items = items
group = group
handle = handle
class = childClass
tagName = childTagName
isHorizontal = isHorizontal
isRtl = isRtl
draggingEnabled = draggingEnabled
dragEndAction = dragEndAction
determineForeignPositionAction = determineForeignPositionAction
}}
{{yield item index}}
{{/drag-sort-item}}
</div>
{{/vertical-collection}}