blob: 3b7ad096464b6896156af798586520b3191b8324 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/**
* Add JavaScript confirmation to the User Delete button
*/
jQuery(function(){
jQuery('#usrmgr__del').on('click', function(){
return confirm(LANG.del_confirm);
});
});
|