- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
27 lines
655 B
JavaScript
27 lines
655 B
JavaScript
var PortletDraggable = function () {
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function () {
|
|
|
|
if (!jQuery().sortable) {
|
|
return;
|
|
}
|
|
|
|
$("#sortable_portlets").sortable({
|
|
connectWith: ".portlet",
|
|
items: ".portlet",
|
|
opacity: 0.8,
|
|
coneHelperSize: true,
|
|
placeholder: 'sortable-box-placeholder round-all',
|
|
forcePlaceholderSize: true,
|
|
tolerance: "pointer"
|
|
});
|
|
|
|
$(".column").disableSelection();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}(); |