mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
8 lines
183 B
JavaScript
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);
|
|
});
|
|
});
|