blob: 252e977f292d87f5bc1e39ea9355b1ddb76d264a (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Add JavaScript confirmation to the User Delete button
*/
function usrmgr_delconfirm(){
if($('usrmgr__del')){
addEvent( $('usrmgr__del'),'click',function(){ return confirm(reallyDel); } );
addEvent( $('usrmgr__del'),'keypress',function(){ return confirm(reallyDel); } );
}
};
addInitEvent(usrmgr_delconfirm);
|