| Current Path : /home/happyrenas/old/devis-huissier.fr/old/administration/assets/pages/scripts/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/old/devis-huissier.fr/old/administration/assets/pages/scripts/portlet-ajax.js |
var PortletAjax = function () {
var handlePortletAjax = function () {
//custom portlet reload handler
$('#my_portlet .portlet-title a.reload').click(function(e){
e.preventDefault(); // prevent default event
e.stopPropagation(); // stop event handling here(cancel the default reload handler)
// do here some custom work:
App.alert({
'type': 'danger',
'icon': 'warning',
'message': 'Custom reload handler!',
'container': $('#my_portlet .portlet-body')
});
})
}
return {
//main function to initiate the module
init: function () {
handlePortletAjax();
}
};
}();
jQuery(document).ready(function() {
PortletAjax.init();
});