21 lines
546 B
JavaScript
21 lines
546 B
JavaScript
htmx.onLoad(function(content) {
|
|
var sortable = content.querySelector(".sortable");
|
|
if(sortable != null) {
|
|
new Sortable(sortable, {
|
|
animation: 150,
|
|
ghostClass: 'blue-background-class',
|
|
group: {
|
|
name: 'shared'
|
|
}
|
|
});
|
|
}
|
|
sortable = content.querySelector(".sortable-from")
|
|
if(sortable != null) {
|
|
new Sortable(sortable, {
|
|
animation: 150,
|
|
ghostClass: 'blue-background-class',
|
|
group: 'shared',
|
|
sort: false
|
|
});
|
|
}
|
|
})
|