xref: /dokuwiki/lib/plugins/usermanager/script.js (revision 137ce95a340b36e962f90c44c9f6414dc2e0d1e4)
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    }
8};
9addInitEvent(usrmgr_delconfirm);
10