27 lines
624 B
JavaScript
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();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}(); |