xref: /dokuwiki/lib/plugins/usermanager/script.js (revision 9a43e8908c8ec30ed259241192f2fa3b9da49104)
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