mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
/**
|
|
* This module enables double-click-to-edit functionality.
|
|
*/
|
|
( function ( mw, $ ) {
|
|
$( function () {
|
|
mw.util.$content.dblclick( function ( e ) {
|
|
e.preventDefault();
|
|
// Trigger native HTMLElement click instead of opening URL (bug 43052)
|
|
$( '#ca-edit a' ).get( 0 ).click();
|
|
} );
|
|
} );
|
|
}( mediaWiki, jQuery ) );
|