[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 /*! 2 * Enables double-click-to-edit functionality. 3 */ 4 ( function ( mw, $ ) { 5 $( function () { 6 mw.util.$content.dblclick( function ( e ) { 7 e.preventDefault(); 8 // Trigger native HTMLElement click instead of opening URL (bug 43052) 9 $( '#ca-edit a' ).get( 0 ).click(); 10 } ); 11 } ); 12 }( mediaWiki, jQuery ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |