9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
|
/**
|
||
|
* Add JavaScript confirmation to the User Delete button
|
||
|
*/
|
||
|
jQuery(function(){
|
||
|
jQuery('#usrmgr__del').on('click', function(){
|
||
|
return confirm(LANG.del_confirm);
|
||
|
});
|
||
|
});
|