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