2014-03-28 22:39:36 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function ( mw, $ ) {
|
2014-05-19 09:24:54 +00:00
|
|
|
var $document = $( document ),
|
|
|
|
start;
|
2014-03-28 22:39:36 +00:00
|
|
|
|
2015-01-23 12:48:27 +00:00
|
|
|
if ( !mw.mmv.isBrowserSupported() ) {
|
2014-03-31 15:04:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-28 22:39:36 +00:00
|
|
|
// If the user disabled MediaViewer in his preferences, we do not set up click handling.
|
|
|
|
// This is loaded before user JS so we cannot check wgMediaViewer.
|
2015-04-02 12:15:24 +00:00
|
|
|
try {
|
|
|
|
if (
|
2016-07-18 13:49:27 +00:00
|
|
|
mw.config.get( 'wgMediaViewerOnClick' ) !== true ||
|
|
|
|
mw.user.isAnon() && window.localStorage && localStorage.getItem( 'wgMediaViewerOnClick' ) === false
|
2015-04-02 12:15:24 +00:00
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch ( e ) { // localStorage.getItem can throw exceptions
|
|
|
|
mw.log( 'Could not check value of wgMediaViewerOnClick in localStorage' );
|
2014-03-28 22:39:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 18:19:00 +00:00
|
|
|
$document.on( 'click.mmv-head', 'a.image', function ( e ) {
|
2014-03-28 22:39:36 +00:00
|
|
|
// Do not interfere with non-left clicks or if modifier keys are pressed.
|
|
|
|
// Also, make sure we do not get in a loop.
|
2014-04-01 07:56:18 +00:00
|
|
|
if ( ( e.button !== 0 && e.which !== 1 ) || e.altKey || e.ctrlKey || e.shiftKey || e.metaKey || e.replayed ) {
|
2014-03-28 22:39:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-19 09:24:54 +00:00
|
|
|
start = $.now();
|
2014-04-28 16:11:55 +00:00
|
|
|
|
2014-03-28 22:39:36 +00:00
|
|
|
// We wait for document readiness because mw.loader.using writes to the DOM
|
|
|
|
// which can cause a blank page if it happens before DOM readiness
|
|
|
|
$document.ready( function () {
|
2015-06-24 18:54:22 +00:00
|
|
|
mw.loader.using( [ 'mmv.bootstrap.autostart' ], function () {
|
2014-03-28 22:39:36 +00:00
|
|
|
mw.mmv.bootstrap.whenThumbsReady().then( function () {
|
2014-11-05 10:40:31 +00:00
|
|
|
mw.mmv.durationLogger.stop( 'early-click-to-replay-click', start ).record( 'early-click-to-replay-click' );
|
2014-04-28 16:11:55 +00:00
|
|
|
|
2014-03-28 22:39:36 +00:00
|
|
|
// We have to copy the properties, passing e doesn't work. Probably because of preventDefault()
|
2016-07-18 13:49:27 +00:00
|
|
|
$( e.target ).trigger( { type: 'click', which: 1, replayed: true } );
|
2014-03-28 22:39:36 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
} );
|
|
|
|
}( mediaWiki, jQuery ) );
|