Files
hrm_eva/wwwroot/BackendScript/js/draggable-portlet.js
Nakorn Rientrakrunchai 8b98125e49 First Initial
2020-02-20 15:02:39 +07:00

27 lines
624 B
JavaScript

var DraggablePortlet = function () {
return {
//main function to initiate the module
init: function () {
if (!jQuery().sortable) {
return;
}
$("#draggable_portlets").sortable({
connectWith: ".card",
items: ".card",
opacity: 0.8,
coneHelperSize: true,
placeholder: 'sortable-box-placeholder round-all',
forcePlaceholderSize: true,
tolerance: "pointer"
});
$(".column").disableSelection();
}
};
}();