about summary refs log blame commit diff stats
path: root/wiki/lib/plugins/usermanager/script.js
blob: de013242bac16ef1876f4b91ea28daefff4317b3 (plain) (tree)
1
2
3
4
5
6
7
8







                                                        
/**
 * Add JavaScript confirmation to the User Delete button
 */
jQuery(function(){
    jQuery('#usrmgr__del').click(function(){
        return confirm(LANG.del_confirm);
    });
});