1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00
dokuwiki_ynh/sources/lib/plugins/usermanager/script.js
2014-02-11 14:56:25 +01:00

8 lines
183 B
JavaScript

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