xref: /dokuwiki/lib/plugins/usermanager/script.js (revision 32951c6c0c3c45d1431b526556423e9484c29037)
1/**
2 * Add JavaScript confirmation to the User Delete button
3 */
4function usrmgr_delconfirm(){
5    if($('usrmgr__del')){
6        addEvent( $('usrmgr__del'),'click',function(){ return confirm(reallyDel); } );
7        addEvent( $('usrmgr__del'),'keypress',function(){ return confirm(reallyDel); } );
8    }
9};
10addInitEvent(usrmgr_delconfirm);
11