xref: /dokuwiki/lib/plugins/usermanager/script.js (revision 4a24b45986919be03b551e34be6931eb88a37ec0)
1/**
2 * Add JavaScript confirmation to the User Delete button
3 */
4jQuery(function(){
5    jQuery('#usrmgr__del').click(function(){
6        return confirm(LANG.del_confirm);
7    });
8});
9