source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/plugins/usermanager/script.js@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 250 bytes
Line 
1/**
2 * Add JavaScript confirmation to the User Delete button
3 */
4function usrmgr_delconfirm(){
5 if($('usrmgr__del')){
6 addEvent( $('usrmgr__del'),'click',function(){ return confirm(reallyDel); } );
7 }
8};
9addInitEvent(usrmgr_delconfirm);
Note: See TracBrowser for help on using the repository browser.