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