5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2025-02-22 22:51:51 +00:00
panel/app/assets/javascripts/drag.js

11 lines
328 B
JavaScript
Raw Normal View History

2018-04-27 19:46:21 +00:00
$(document).on('turbolinks:load', function() {
tableDragger(document.querySelector('.table-draggable'), {
mode: 'row',
onlyBody: true,
dragHandler: '.handle'
2018-04-27 20:24:28 +00:00
}).on('drop', function(from, to, el, mode) {
// Al soltar, reordenamos toda la tabla
$('.post_order').val(function(i,v) { return i; });
2018-04-27 19:46:21 +00:00
});
});