2014-02-17 15:09:23 +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-03-04 11:53:53 +00:00
|
|
|
var MMVB;
|
2014-02-17 15:09:23 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-21 11:16:30 +00:00
|
|
|
* Bootstrap code listening to thumb clicks checking the initial location.hash
|
2014-02-17 15:09:23 +00:00
|
|
|
* Loads the mmv and opens it if necessary
|
2014-02-19 02:27:30 +00:00
|
|
|
* @class mw.mmv.MultimediaViewerBootstrap
|
2014-02-17 15:09:23 +00:00
|
|
|
*/
|
|
|
|
function MultimediaViewerBootstrap () {
|
|
|
|
this.validExtensions = {
|
|
|
|
'jpg' : true,
|
|
|
|
'jpeg' : true,
|
|
|
|
'gif' : true,
|
|
|
|
'svg' : true,
|
|
|
|
'png' : true,
|
|
|
|
'tiff' : true,
|
|
|
|
'tif' : true
|
|
|
|
};
|
|
|
|
|
2014-02-24 17:06:11 +00:00
|
|
|
// Exposed for tests
|
|
|
|
this.readinessCSSClass = 'mw-mmv-has-been-loaded';
|
|
|
|
this.readinessWaitDuration = 100;
|
2014-04-24 13:47:59 +00:00
|
|
|
this.hoverWaitDuration = 200;
|
2014-03-26 23:59:04 +00:00
|
|
|
|
|
|
|
/** @property {mw.mmv.HtmlUtils} htmlUtils - */
|
|
|
|
this.htmlUtils = new mw.mmv.HtmlUtils();
|
|
|
|
|
2014-04-29 01:35:07 +00:00
|
|
|
/**
|
|
|
|
* This flag is set to true when we were unable to load the viewer.
|
|
|
|
* @property {boolean}
|
|
|
|
*/
|
|
|
|
this.viewerIsBroken = false;
|
|
|
|
|
2014-03-28 22:39:36 +00:00
|
|
|
this.thumbsReadyDeferred = $.Deferred();
|
2014-03-26 23:59:04 +00:00
|
|
|
this.thumbs = [];
|
2014-04-24 13:47:59 +00:00
|
|
|
|
2014-04-08 21:01:07 +00:00
|
|
|
this.$thumbs = $( '.gallery .image img, a.image img, #file a img' );
|
2014-03-26 23:59:04 +00:00
|
|
|
this.processThumbs();
|
2014-04-11 09:31:38 +00:00
|
|
|
|
|
|
|
this.browserHistory = window.history;
|
2014-02-17 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MMVB = MultimediaViewerBootstrap.prototype;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the mmv module asynchronously and passes the thumb data to it
|
|
|
|
* @returns {jQuery.Promise}
|
|
|
|
*/
|
|
|
|
MMVB.loadViewer = function () {
|
|
|
|
var deferred = $.Deferred(),
|
|
|
|
bs = this;
|
|
|
|
|
2014-03-14 22:19:26 +00:00
|
|
|
// Don't load if someone has specifically stopped us from doing so
|
|
|
|
if ( mw.config.get( 'wgMediaViewer' ) !== true ) {
|
|
|
|
return deferred.reject();
|
|
|
|
}
|
|
|
|
|
2014-03-28 08:06:53 +00:00
|
|
|
bs.setupOverlay();
|
|
|
|
|
2014-02-14 00:36:10 +00:00
|
|
|
mw.loader.using( 'mmv', function() {
|
|
|
|
bs.isCSSReady( deferred );
|
|
|
|
}, function ( error ) {
|
|
|
|
deferred.reject( error.message );
|
|
|
|
} );
|
2014-02-24 17:06:11 +00:00
|
|
|
|
2014-02-25 02:28:49 +00:00
|
|
|
return deferred.done( function ( viewer ) {
|
2014-02-17 15:09:23 +00:00
|
|
|
if ( !bs.viewerInitialized ) {
|
|
|
|
if ( bs.thumbs.length ) {
|
2014-02-25 02:28:49 +00:00
|
|
|
viewer.initWithThumbs( bs.thumbs );
|
2014-02-17 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bs.viewerInitialized = true;
|
|
|
|
}
|
2014-04-09 00:22:18 +00:00
|
|
|
} ).fail( function( message ) {
|
|
|
|
mw.log.warn( message );
|
|
|
|
bs.cleanupOverlay();
|
2014-04-29 01:35:07 +00:00
|
|
|
bs.viewerIsBroken = true;
|
2014-04-09 21:56:19 +00:00
|
|
|
mw.notify( 'Error loading MediaViewer: ' + message );
|
2014-02-17 15:09:23 +00:00
|
|
|
} );
|
2014-02-24 17:06:11 +00:00
|
|
|
};
|
2014-02-17 15:09:23 +00:00
|
|
|
|
2014-02-24 17:06:11 +00:00
|
|
|
/**
|
|
|
|
* Checks if the mmv CSS has been correctly added to the page
|
|
|
|
* This is a workaround for core bug 61852
|
2014-02-25 02:28:49 +00:00
|
|
|
* @param {jQuery.Promise.<mw.mmv.MultimediaViewer>} deferred
|
2014-02-24 17:06:11 +00:00
|
|
|
*/
|
|
|
|
MMVB.isCSSReady = function ( deferred ) {
|
|
|
|
var $dummy = $( '<div class="' + this.readinessCSSClass + '">' )
|
|
|
|
.appendTo( $( document.body ) ),
|
2014-04-09 00:22:18 +00:00
|
|
|
bs = this,
|
2014-04-21 21:23:28 +00:00
|
|
|
viewer,
|
|
|
|
message;
|
2014-02-24 17:06:11 +00:00
|
|
|
|
|
|
|
if ( $dummy.css( 'display' ) === 'inline' ) {
|
|
|
|
// Let's be clean and remove the test item before resolving the deferred
|
|
|
|
$dummy.remove();
|
2014-04-09 00:22:18 +00:00
|
|
|
try {
|
|
|
|
viewer = bs.getViewer();
|
|
|
|
} catch ( e ) {
|
2014-04-21 21:23:28 +00:00
|
|
|
message = e.message;
|
|
|
|
if ( e.stack ) {
|
|
|
|
message += '\n' + e.stack;
|
|
|
|
}
|
|
|
|
deferred.reject( message );
|
2014-04-09 00:22:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
deferred.resolve( viewer );
|
2014-02-24 17:06:11 +00:00
|
|
|
} else {
|
|
|
|
$dummy.remove();
|
|
|
|
setTimeout( function () { bs.isCSSReady( deferred ); }, this.readinessWaitDuration );
|
|
|
|
}
|
2014-02-17 15:09:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes all thumbs found on the page
|
|
|
|
*/
|
|
|
|
MMVB.processThumbs = function () {
|
|
|
|
var bs = this;
|
|
|
|
|
2014-04-28 23:20:57 +00:00
|
|
|
// if this breaks in IE8, see https://github.com/ebryn/backburner.js/pull/50
|
|
|
|
// but it probably won't since there is a catch further up the chain
|
|
|
|
try {
|
|
|
|
this.$thumbs.each( function ( i, thumb ) {
|
|
|
|
bs.processThumb( thumb );
|
|
|
|
} );
|
|
|
|
} finally {
|
|
|
|
this.thumbsReadyDeferred.resolve();
|
|
|
|
// now that we have set up our real click handler we can we can remove the temporary
|
|
|
|
// handler added in mmv.head.js which just replays clicks to the real handler
|
|
|
|
$( document ).off( 'click.mmv-head' );
|
|
|
|
}
|
2014-02-17 15:09:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processes a thumb
|
|
|
|
* @param {Object} thumb
|
|
|
|
*/
|
|
|
|
MMVB.processThumb = function ( thumb ) {
|
|
|
|
var $thumbCaption,
|
|
|
|
caption,
|
|
|
|
bs = this,
|
2014-04-15 21:59:39 +00:00
|
|
|
alwaysOpen = false,
|
2014-02-17 15:09:23 +00:00
|
|
|
$thumb = $( thumb ),
|
|
|
|
$link = $thumb.closest( 'a.image' ),
|
|
|
|
$thumbContain = $link.closest( '.thumb' ),
|
|
|
|
$enlarge = $thumbContain.find( '.magnify a' ),
|
|
|
|
title = mw.Title.newFromImg( $thumb ),
|
|
|
|
link = $link.prop( 'href' );
|
|
|
|
|
|
|
|
if ( !bs.validExtensions[ title.getExtension().toLowerCase() ] ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-11 18:53:12 +00:00
|
|
|
if (
|
2014-03-06 23:26:25 +00:00
|
|
|
// This is almost certainly an icon for an informational template like
|
|
|
|
// {{refimprove}} on enwiki.
|
2014-03-11 18:53:12 +00:00
|
|
|
$thumb.closest( '.metadata' ).length > 0 ||
|
|
|
|
|
|
|
|
// This is an article with no text.
|
|
|
|
$thumb.closest( '.noarticletext' ).length > 0
|
|
|
|
) {
|
2014-03-06 23:26:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-17 15:09:23 +00:00
|
|
|
if ( $thumbContain.length !== 0 && $thumbContain.is( '.thumb' ) ) {
|
|
|
|
$thumbCaption = $thumbContain.find( '.thumbcaption' ).clone();
|
|
|
|
$thumbCaption.find( '.magnify' ).remove();
|
2014-04-23 01:26:45 +00:00
|
|
|
if ( !$thumbCaption.length ) { // gallery, maybe
|
|
|
|
$thumbCaption = $thumbContain.closest( '.gallerybox' ).find( '.gallerytext' ).clone();
|
|
|
|
}
|
2014-03-26 23:59:04 +00:00
|
|
|
caption = this.htmlUtils.htmlToTextWithLinks( $thumbCaption.html() || '' );
|
2014-04-24 13:47:59 +00:00
|
|
|
|
|
|
|
// If this is a thumb, we preload JS/CSS when the mouse cursor hovers the thumb container (thumb image + caption + border)
|
|
|
|
$thumbContain.mouseenter( function() {
|
|
|
|
// There is no point preloading if clicking the thumb won't open Media Viewer
|
|
|
|
if ( mw.config.get( 'wgMediaViewerOnClick' ) !== true ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bs.preloadOnHoverTimer = setTimeout( function() {
|
|
|
|
mw.loader.load( 'mmv' );
|
|
|
|
}, bs.hoverWaitDuration );
|
|
|
|
} ).mouseleave( function() {
|
|
|
|
if ( bs.preloadOnHoverTimer ) {
|
|
|
|
clearTimeout( bs.preloadOnHoverTimer );
|
|
|
|
}
|
|
|
|
} );
|
2014-02-17 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 21:01:07 +00:00
|
|
|
if ( $thumb.closest( '#file' ).length > 0 ) {
|
|
|
|
// This is a file page. Make adjustments.
|
|
|
|
link = $thumb.closest( 'a' ).prop( 'href' );
|
|
|
|
|
|
|
|
$( '<p>' )
|
|
|
|
.append(
|
|
|
|
$link = $( '<a>' )
|
|
|
|
// It won't matter because we catch the click event anyway, but
|
|
|
|
// give the user some URL to see.
|
|
|
|
.prop( 'href', $thumb.closest( 'a' ).prop( 'href' ) )
|
|
|
|
.addClass( 'mw-mmv-view-expanded' )
|
|
|
|
.text( mw.message( 'multimediaviewer-view-expanded' ).text() )
|
|
|
|
)
|
|
|
|
.appendTo( $( '.fullMedia' ) );
|
2014-04-15 21:59:39 +00:00
|
|
|
|
|
|
|
// Ignore the preference, open anyway
|
|
|
|
alwaysOpen = true;
|
2014-04-08 21:01:07 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 15:09:23 +00:00
|
|
|
// This is the data that will be passed onto the mmv
|
|
|
|
this.thumbs.push( {
|
|
|
|
thumb : thumb,
|
|
|
|
$thumb : $thumb,
|
|
|
|
title : title,
|
|
|
|
link : link,
|
|
|
|
caption : caption } );
|
|
|
|
|
|
|
|
$link.add( $enlarge ).click( function ( e ) {
|
2014-04-15 21:59:39 +00:00
|
|
|
return bs.click( this, e, title, alwaysOpen );
|
2014-02-17 15:09:23 +00:00
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles a click event on a link
|
2014-04-29 01:35:07 +00:00
|
|
|
* @param {HTMLElement} element Clicked element
|
2014-02-17 15:09:23 +00:00
|
|
|
* @param {jQuery.Event} e jQuery event object
|
|
|
|
* @param {string} title File title
|
2014-04-15 21:59:39 +00:00
|
|
|
* @param {boolean} overridePreference Whether to ignore global preferences and open
|
|
|
|
* the lightbox on this click event.
|
2014-02-17 15:09:23 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2014-04-15 21:59:39 +00:00
|
|
|
MMVB.click = function ( element, e, title, overridePreference ) {
|
2014-02-17 15:09:23 +00:00
|
|
|
var $element = $( element );
|
|
|
|
|
|
|
|
// Do not interfere with non-left clicks or if modifier keys are pressed.
|
2014-04-01 07:56:18 +00:00
|
|
|
if ( ( e.button !== 0 && e.which !== 1 ) || e.altKey || e.ctrlKey || e.shiftKey || e.metaKey ) {
|
2014-02-17 15:09:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-14 22:19:26 +00:00
|
|
|
// Don't load if someone has specifically stopped us from doing so
|
2014-04-15 21:59:39 +00:00
|
|
|
if ( mw.config.get( 'wgMediaViewerOnClick' ) !== true && overridePreference !== true ) {
|
2014-03-14 22:19:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-29 01:35:07 +00:00
|
|
|
// Don't load if we already tried loading and it failed
|
|
|
|
if ( this.viewerIsBroken ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-28 16:11:55 +00:00
|
|
|
mw.mmv.DurationLogger.start( [ 'click-to-first-image', 'click-to-first-metadata' ] );
|
|
|
|
|
2014-02-17 15:09:23 +00:00
|
|
|
if ( $element.is( 'a.image' ) ) {
|
2014-04-15 16:14:06 +00:00
|
|
|
mw.mmv.logger.log( 'thumbnail' );
|
2014-02-17 15:09:23 +00:00
|
|
|
} else if ( $element.is( '.magnify a' ) ) {
|
2014-04-15 16:14:06 +00:00
|
|
|
mw.mmv.logger.log( 'enlarge' );
|
2014-02-17 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 02:28:49 +00:00
|
|
|
this.loadViewer().then( function ( viewer ) {
|
2014-04-14 23:22:28 +00:00
|
|
|
viewer.loadImageByTitle( title, true );
|
2014-02-17 15:09:23 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2014-02-24 09:29:14 +00:00
|
|
|
* Handles the browser location hash on pageload or hash change
|
2014-04-15 16:14:06 +00:00
|
|
|
* @param {boolean} log Whether this is called for the hash that came with the pageload
|
2014-02-17 15:09:23 +00:00
|
|
|
*/
|
2014-04-15 16:14:06 +00:00
|
|
|
MMVB.hash = function ( initialHash ) {
|
2014-04-09 00:22:18 +00:00
|
|
|
var bootstrap = this;
|
|
|
|
|
2014-02-21 11:16:30 +00:00
|
|
|
// There is no point loading the mmv if it isn't loaded yet for hash changes unrelated to the mmv
|
|
|
|
// Such as anchor links on the page
|
|
|
|
if ( !this.viewerInitialized && window.location.hash.indexOf( '#mediaviewer/') !== 0 ) {
|
|
|
|
return;
|
2014-02-17 15:09:23 +00:00
|
|
|
}
|
2014-02-21 11:16:30 +00:00
|
|
|
|
2014-02-24 09:29:14 +00:00
|
|
|
if ( this.skipNextHashHandling ) {
|
|
|
|
this.skipNextHashHandling = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:28:49 +00:00
|
|
|
this.loadViewer().then( function ( viewer ) {
|
|
|
|
viewer.hash();
|
2014-04-09 00:22:18 +00:00
|
|
|
// this is an ugly temporary fix to avoid a black screen of death when
|
|
|
|
// the page is loaded with an invalid MMV url
|
|
|
|
if ( !viewer.isOpen ) {
|
|
|
|
bootstrap.cleanupOverlay();
|
2014-04-15 16:14:06 +00:00
|
|
|
} else if ( initialHash ) {
|
|
|
|
mw.mmv.logger.log( 'hash-load' );
|
|
|
|
} else {
|
|
|
|
mw.mmv.logger.log( 'history-navigation' );
|
2014-04-09 00:22:18 +00:00
|
|
|
}
|
2014-02-21 11:16:30 +00:00
|
|
|
} );
|
2014-02-17 15:09:23 +00:00
|
|
|
};
|
|
|
|
|
2014-02-24 09:29:14 +00:00
|
|
|
/**
|
|
|
|
* Handles hash change requests coming from mmv
|
2014-04-11 09:31:38 +00:00
|
|
|
* @param {jQuery.Event} e Custom mmv-hash event
|
2014-02-24 09:29:14 +00:00
|
|
|
*/
|
|
|
|
MMVB.internalHashChange = function ( e ) {
|
2014-04-11 09:31:38 +00:00
|
|
|
var hash = e.hash;
|
|
|
|
|
|
|
|
// The advantage of using pushState when it's available is that it has to ability to truly
|
|
|
|
// clear the hash, not leaving "#" in the history
|
|
|
|
// An entry with "#" in the history has the side-effect of resetting the scroll position when navigating the history
|
|
|
|
if ( this.browserHistory ) {
|
|
|
|
// In order to truly clear the hash, we need to reconstruct the hash-free URL
|
|
|
|
if ( hash === '#' ) {
|
|
|
|
hash = window.location.href.replace( /#.*$/, '' );
|
|
|
|
}
|
|
|
|
this.browserHistory.pushState( null, null, hash );
|
|
|
|
} else {
|
|
|
|
// Since we voluntarily changed the hash, we don't want MMVB.hash (which will trigger on hashchange event) to treat it
|
|
|
|
this.skipNextHashHandling = true;
|
2014-02-24 09:29:14 +00:00
|
|
|
|
2014-04-11 09:31:38 +00:00
|
|
|
window.location.hash = hash;
|
|
|
|
}
|
2014-02-24 09:29:14 +00:00
|
|
|
};
|
|
|
|
|
2014-03-04 11:53:53 +00:00
|
|
|
/**
|
|
|
|
* Instantiates a new viewer if necessary
|
|
|
|
* @returns {mw.mmv.MultimediaViewer}
|
|
|
|
*/
|
|
|
|
MMVB.getViewer = function () {
|
|
|
|
if ( this.viewer === undefined ) {
|
|
|
|
this.viewer = new mw.mmv.MultimediaViewer();
|
|
|
|
this.viewer.setupEventHandlers();
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.viewer;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listens to events on the window/document
|
|
|
|
*/
|
|
|
|
MMVB.setupEventHandlers = function () {
|
|
|
|
var self = this;
|
2014-02-17 15:09:23 +00:00
|
|
|
|
2014-04-11 09:31:38 +00:00
|
|
|
$( window ).on( this.browserHistory ? 'popstate.mmvb' : 'hashchange', function () {
|
2014-03-04 11:53:53 +00:00
|
|
|
self.hash();
|
2014-04-11 09:31:38 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
// Interpret any hash that might already be in the url
|
2014-04-15 16:14:06 +00:00
|
|
|
self.hash( true );
|
2014-03-04 11:53:53 +00:00
|
|
|
|
2014-04-11 09:31:38 +00:00
|
|
|
$( document ).on( 'mmv-hash', function ( e ) {
|
2014-03-04 11:53:53 +00:00
|
|
|
self.internalHashChange( e );
|
2014-04-11 09:31:38 +00:00
|
|
|
} ).on( 'mmv-cleanup-overlay', function () {
|
2014-03-28 08:06:53 +00:00
|
|
|
self.cleanupOverlay();
|
2014-03-04 11:53:53 +00:00
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cleans up event handlers, used for tests
|
|
|
|
*/
|
|
|
|
MMVB.cleanupEventHandlers = function () {
|
2014-04-11 09:31:38 +00:00
|
|
|
$( window ).off( 'hashchange popstate.mmvb' );
|
|
|
|
$( document ).off( 'mmv-hash' );
|
2014-03-04 11:53:53 +00:00
|
|
|
};
|
|
|
|
|
2014-03-28 08:06:53 +00:00
|
|
|
/**
|
|
|
|
* Sets up the overlay while the viewer loads
|
|
|
|
*/
|
|
|
|
MMVB.setupOverlay = function () {
|
2014-04-11 09:31:38 +00:00
|
|
|
var $scrollTo = $.scrollTo(),
|
|
|
|
$body = $( document.body );
|
|
|
|
|
|
|
|
// There are situations where we can call setupOverlay while the overlay is already there,
|
|
|
|
// such as inside this.hash(). In that case, do nothing
|
|
|
|
if ( $body.hasClass( 'mw-mmv-lightbox-open' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-09 00:22:18 +00:00
|
|
|
if ( !this.$overlay ) {
|
|
|
|
this.$overlay = $( '<div>' )
|
|
|
|
.addClass( 'mw-mmv-overlay' );
|
|
|
|
}
|
2014-03-28 08:06:53 +00:00
|
|
|
|
2014-04-11 09:31:38 +00:00
|
|
|
this.savedScroll = { top : $scrollTo.scrollTop(), left : $scrollTo.scrollLeft() };
|
|
|
|
|
|
|
|
$body.addClass( 'mw-mmv-lightbox-open' )
|
2014-03-28 08:06:53 +00:00
|
|
|
.append( this.$overlay );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cleans up the overlay
|
|
|
|
*/
|
|
|
|
MMVB.cleanupOverlay = function () {
|
2014-04-23 00:26:07 +00:00
|
|
|
var bootstrap = this;
|
|
|
|
|
2014-03-31 21:33:12 +00:00
|
|
|
$( document.body ).removeClass( 'mw-mmv-lightbox-open' );
|
2014-03-28 08:06:53 +00:00
|
|
|
|
|
|
|
if ( this.$overlay ) {
|
|
|
|
this.$overlay.remove();
|
|
|
|
}
|
2014-04-11 09:31:38 +00:00
|
|
|
|
|
|
|
if ( this.savedScroll ) {
|
2014-04-23 00:26:07 +00:00
|
|
|
// setTimeout because otherwise Chrome will scroll back to top after the popstate event handlers run
|
|
|
|
setTimeout( function() { $.scrollTo( bootstrap.savedScroll, 0 ); bootstrap.savedScroll = undefined; }, 0 );
|
2014-04-11 09:31:38 +00:00
|
|
|
}
|
2014-03-28 08:06:53 +00:00
|
|
|
};
|
|
|
|
|
2014-03-28 22:39:36 +00:00
|
|
|
MMVB.whenThumbsReady = function () {
|
|
|
|
return this.thumbsReadyDeferred.promise();
|
|
|
|
};
|
|
|
|
|
2014-03-04 11:53:53 +00:00
|
|
|
mw.mmv.MultimediaViewerBootstrap = MultimediaViewerBootstrap;
|
2014-02-17 15:09:23 +00:00
|
|
|
}( mediaWiki, jQuery ) );
|