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