2019-02-05 04:59:03 +01:00
|
|
|
/* Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
$(init);
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
|
|
|
|
$("tr.deck").draggable({
|
|
|
|
scroll: false,
|
|
|
|
|
|
|
|
// can't use "helper: 'clone'" because of a bug in jQuery 1.5
|
|
|
|
helper: function (event) {
|
|
|
|
return $(this).clone(false);
|
|
|
|
},
|
|
|
|
delay: 200,
|
|
|
|
opacity: 0.7
|
|
|
|
});
|
|
|
|
$("tr.deck").droppable({
|
|
|
|
drop: handleDropEvent,
|
|
|
|
hoverClass: 'drag-hover'
|
|
|
|
});
|
|
|
|
$("tr.top-level-drag-row").droppable({
|
|
|
|
drop: handleDropEvent,
|
|
|
|
hoverClass: 'drag-hover'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleDropEvent(event, ui) {
|
|
|
|
var draggedDeckId = ui.draggable.attr('id');
|
2017-08-14 23:58:14 +02:00
|
|
|
var ontoDeckId = $(this).attr('id') || '';
|
2017-08-10 11:02:32 +02:00
|
|
|
|
|
|
|
pycmd("drag:" + draggedDeckId + "," + ontoDeckId);
|
|
|
|
}
|