[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/lib/plugins/usermanager/ -> script.js (source)

   1  /**
   2   * Add JavaScript confirmation to the User Delete button
   3   */
   4  jQuery(function(){
   5      jQuery('#usrmgr__del').on('click', function(){
   6          return confirm(LANG.del_confirm);
   7      });
   8  });