2013-11-13 23:01:16 +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, $, oo, MLBInterface ) {
|
2013-11-25 23:51:40 +00:00
|
|
|
var LIP;
|
|
|
|
|
2013-11-13 23:01:16 +00:00
|
|
|
function LightboxInterface() {
|
|
|
|
MLBInterface.call( this );
|
2013-11-25 23:51:40 +00:00
|
|
|
|
2013-12-12 21:31:14 +00:00
|
|
|
this.eventsRegistered = {};
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
this.initializeInterface();
|
2013-11-13 23:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
oo.inheritClass( LightboxInterface, MLBInterface );
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
LIP = LightboxInterface.prototype;
|
|
|
|
|
2013-12-06 20:10:51 +00:00
|
|
|
LIP.empty = function () {
|
2013-12-12 21:31:14 +00:00
|
|
|
this.clearEvents();
|
2013-12-06 20:10:51 +00:00
|
|
|
|
|
|
|
this.$license.empty().addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$imageDesc.empty();
|
|
|
|
this.$imageDescDiv.addClass( 'empty' );
|
|
|
|
this.$title.empty();
|
|
|
|
this.$credit.empty().addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$username.empty();
|
|
|
|
this.$usernameLi.addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$repo.empty();
|
|
|
|
this.$repoLi.addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$datetime.empty();
|
|
|
|
this.$datetimeLi.addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$useFile.data( 'title', null );
|
|
|
|
this.$useFile.data( 'link', null );
|
|
|
|
this.$useFile.data( 'src', null );
|
|
|
|
this.$useFile.data( 'isLocal', null );
|
|
|
|
this.$useFileLi.addClass( 'empty' );
|
|
|
|
|
|
|
|
this.$imageDiv.addClass( 'empty' );
|
|
|
|
|
|
|
|
MLBInterface.prototype.empty.call( this );
|
|
|
|
};
|
|
|
|
|
2013-12-12 21:31:14 +00:00
|
|
|
/**
|
|
|
|
* Add event handler in a way that will be auto-cleared on lightbox close
|
|
|
|
* @param {string} name Name of event, like 'keydown'
|
|
|
|
* @param {Function} handler Callback for the event
|
|
|
|
*/
|
|
|
|
LIP.handleEvent = function ( name, handler ) {
|
|
|
|
if ( this.eventsRegistered[name] === undefined ) {
|
|
|
|
this.eventsRegistered[name] = [];
|
|
|
|
}
|
|
|
|
this.eventsRegistered[name].push( handler );
|
|
|
|
$( document ).on( name, handler );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all events that have been registered.
|
|
|
|
*/
|
|
|
|
LIP.clearEvents = function () {
|
|
|
|
var i, handlers, thisevent,
|
|
|
|
events = Object.keys( this.eventsRegistered );
|
|
|
|
|
|
|
|
for ( i = 0; i < events.length; i++ ) {
|
|
|
|
thisevent = events[i];
|
|
|
|
handlers = this.eventsRegistered[thisevent];
|
|
|
|
while ( handlers.length > 0 ) {
|
|
|
|
$( document ).off( thisevent, handlers.pop() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
LIP.load = function ( image ) {
|
|
|
|
var hashFragment = '#mediaviewer/' + mw.mediaViewer.currentImageFilename + '/' + mw.mediaViewer.lightbox.currentIndex;
|
|
|
|
|
|
|
|
mw.mediaViewer.ui = this;
|
|
|
|
mw.mediaViewer.registerLogging();
|
|
|
|
|
|
|
|
if ( !this.comingFromPopstate ) {
|
|
|
|
history.pushState( {}, '', hashFragment );
|
|
|
|
}
|
|
|
|
|
2013-12-12 21:31:14 +00:00
|
|
|
this.handleEvent( 'keydown', this.handleKeyDown );
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
MLBInterface.prototype.load.call( this, image );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeInterface = function () {
|
|
|
|
this.$postDiv.css( 'top', ( $( window ).height() - 64 ) + 'px' );
|
|
|
|
|
|
|
|
this.initializeHeader();
|
|
|
|
this.initializeButtons();
|
|
|
|
this.initializeImage();
|
|
|
|
this.initializeImageMetadata();
|
|
|
|
this.initializeAboutLinks();
|
2013-11-26 03:37:01 +00:00
|
|
|
this.initializeNavigation();
|
2013-11-25 23:51:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeHeader = function () {
|
2013-12-02 19:46:52 +00:00
|
|
|
var ui = this;
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
this.$closeButton.detach();
|
|
|
|
this.$fullscreenButton.detach();
|
|
|
|
|
2013-12-02 19:46:52 +00:00
|
|
|
this.$dragBar = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-drag-affordance' )
|
|
|
|
.appendTo( this.$controlBar )
|
|
|
|
.click( function () {
|
|
|
|
ui.toggleMetadata();
|
|
|
|
} );
|
|
|
|
|
|
|
|
this.$dragIcon = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-drag-icon' )
|
|
|
|
.appendTo( this.$dragBar );
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
this.$titleDiv = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-title-contain' )
|
|
|
|
.appendTo( this.$controlBar );
|
|
|
|
|
|
|
|
this.$postDiv.append( this.$controlBar );
|
|
|
|
|
|
|
|
this.initializeTitleAndCredit();
|
|
|
|
this.initializeLicense();
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeTitleAndCredit = function () {
|
|
|
|
this.$titleAndCredit = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-title-credit' )
|
|
|
|
.appendTo( this.$titleDiv );
|
|
|
|
|
|
|
|
this.initializeTitle();
|
|
|
|
this.initializeCredit();
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeTitle = function () {
|
|
|
|
this.$titlePara = $( '<p>' )
|
|
|
|
.addClass( 'mw-mlb-title-para' )
|
|
|
|
.appendTo( this.$titleAndCredit );
|
|
|
|
|
|
|
|
this.$title = $( '<span>' )
|
|
|
|
.addClass( 'mw-mlb-title' )
|
|
|
|
.appendTo( this.$titlePara );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeCredit = function () {
|
|
|
|
this.$source = $( '<span>' )
|
|
|
|
.addClass( 'mw-mlb-source' );
|
|
|
|
|
|
|
|
this.$author = $( '<span>' )
|
|
|
|
.addClass( 'mw-mlb-author' );
|
|
|
|
|
|
|
|
this.$credit = $( '<p>' )
|
|
|
|
.addClass( 'mw-mlb-credit empty' )
|
|
|
|
.html(
|
|
|
|
mw.message(
|
|
|
|
'multimediaviewer-credit',
|
|
|
|
this.$author.get( 0 ).outerHTML,
|
|
|
|
this.$source.get( 0 ).outerHTML
|
|
|
|
).plain()
|
|
|
|
)
|
|
|
|
.appendTo( this.$titleAndCredit );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeLicense = function () {
|
|
|
|
this.$license = $( '<a>' )
|
|
|
|
.addClass( 'mw-mlb-license empty' )
|
|
|
|
.prop( 'href', '#' )
|
|
|
|
.appendTo( this.$titlePara );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeButtons = function () {
|
|
|
|
this.$mwControls = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-controls' )
|
|
|
|
// Note we aren't adding the fullscreen button here.
|
|
|
|
// Fullscreen causes some funky issues with UI redraws,
|
|
|
|
// and we aren't sure why, but it's not really necessary
|
|
|
|
// with the new interface anyway - it's basically fullscreen
|
|
|
|
// already!
|
|
|
|
.append(
|
|
|
|
this.$closeButton
|
|
|
|
)
|
|
|
|
.appendTo( this.$main );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeImage = function () {
|
|
|
|
this.$imageDiv
|
|
|
|
.addClass( 'empty' );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeImageMetadata = function () {
|
|
|
|
this.$imageMetadata = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-image-metadata' )
|
|
|
|
.appendTo( this.$postDiv );
|
|
|
|
|
|
|
|
this.initializeImageDesc();
|
|
|
|
this.initializeImageLinks();
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeImageDesc = function () {
|
|
|
|
this.$imageDescDiv = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-image-desc-div empty' )
|
|
|
|
.appendTo( this.$imageMetadata );
|
|
|
|
|
|
|
|
this.$imageDesc = $( '<p>' )
|
|
|
|
.addClass( 'mw-mlb-image-desc' )
|
|
|
|
.appendTo( this.$imageDescDiv );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeImageLinks = function () {
|
|
|
|
this.$imageLinkDiv = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-image-links-div' )
|
|
|
|
.appendTo( this.$imageMetadata );
|
|
|
|
|
|
|
|
this.$imageLinks = $( '<ul>' )
|
|
|
|
.addClass( 'mw-mlb-image-links' )
|
|
|
|
.appendTo( this.$imageLinkDiv );
|
|
|
|
|
|
|
|
this.initializeRepoLink();
|
|
|
|
this.initializeDatetime();
|
|
|
|
this.initializeUploader();
|
|
|
|
this.initializeFileUsage();
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeRepoLink = function () {
|
|
|
|
this.$repoLi = $( '<li>' )
|
|
|
|
.addClass( 'mw-mlb-repo-li empty' )
|
|
|
|
.appendTo( this.$imageLinks );
|
|
|
|
|
|
|
|
this.$repo = $( '<a>' )
|
|
|
|
.addClass( 'mw-mlb-repo' )
|
|
|
|
.prop( 'href', '#' )
|
|
|
|
.click( function ( e ) {
|
|
|
|
var $link = $( this );
|
|
|
|
mw.mediaViewer.log( 'site-link-click' );
|
|
|
|
// If the user is navigating away, we have to add a timeout to fix that.
|
|
|
|
if ( e.altKey || e.shiftKey || e.ctrlKey || e.metaKey ) {
|
|
|
|
// Just ignore this case - either they're opening in a new
|
|
|
|
// window and the logging will work, or they're not trying to
|
|
|
|
// navigate away from the page and we should leave them alone.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
setTimeout( function () {
|
|
|
|
window.location.href = $link.prop( 'href' );
|
|
|
|
}, 500 );
|
|
|
|
} )
|
|
|
|
.appendTo( this.$repoLi );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeDatetime = function () {
|
|
|
|
this.$datetimeLi = $( '<li>' )
|
|
|
|
.addClass( 'mw-mlb-datetime-li empty' )
|
|
|
|
.appendTo( this.$imageLinks );
|
|
|
|
|
|
|
|
this.$datetime = $( '<span>' )
|
|
|
|
.addClass( 'mw-mlb-datetime' )
|
|
|
|
.appendTo( this.$datetimeLi );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeUploader = function () {
|
|
|
|
this.$usernameLi = $( '<li>' )
|
|
|
|
.addClass( 'mw-mlb-username-li empty' )
|
|
|
|
.appendTo( this.$imageLinks );
|
|
|
|
|
|
|
|
this.$username = $( '<a>' )
|
|
|
|
.addClass( 'mw-mlb-username' )
|
|
|
|
.prop( 'href', '#' )
|
|
|
|
.appendTo( this.$usernameLi );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeFileUsage = function () {
|
|
|
|
var ui = this;
|
|
|
|
|
|
|
|
this.$useFileLi = $( '<li>' )
|
|
|
|
.addClass( 'mw-mlb-usefile-li empty' )
|
|
|
|
.appendTo( this.$imageLinks );
|
|
|
|
|
|
|
|
this.$useFile = $( '<a>' )
|
|
|
|
.addClass( 'mw-mlb-usefile' )
|
|
|
|
.prop( 'href', '#' )
|
|
|
|
.text( mw.message( 'multimediaviewer-use-file' ).text() )
|
|
|
|
.click( function () {
|
|
|
|
ui.openFileUsageDialog();
|
2013-12-02 21:11:26 +00:00
|
|
|
return false;
|
2013-11-25 23:51:40 +00:00
|
|
|
} )
|
|
|
|
.appendTo( this.$useFileLi );
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.openFileUsageDialog = function () {
|
2013-11-28 05:41:46 +00:00
|
|
|
// Only open dialog once
|
|
|
|
if ( this.$dialog ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
function selectAllOnEvent() {
|
2013-11-28 20:55:56 +00:00
|
|
|
this.select();
|
2013-11-25 23:51:40 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 22:58:31 +00:00
|
|
|
var fileTitle = this.$useFile.data( 'title' ),
|
2013-11-25 23:51:40 +00:00
|
|
|
|
|
|
|
filename = fileTitle.getPrefixedText(),
|
|
|
|
desc = fileTitle.getNameText(),
|
|
|
|
|
2013-11-27 22:58:31 +00:00
|
|
|
linkPrefix = this.$useFile.data( 'isLocal' ) ? mw.config.get( 'wgServer' ) : '',
|
2013-11-27 22:58:31 +00:00
|
|
|
src = this.$useFile.data( 'src' ),
|
|
|
|
link = this.$useFile.data( 'link' ) || src,
|
2013-11-27 22:58:31 +00:00
|
|
|
pattern = /^\/[^\/]/,
|
|
|
|
finalLink = pattern.test(link) ? linkPrefix +link: link,
|
2013-11-25 23:51:40 +00:00
|
|
|
|
2013-12-18 23:20:58 +00:00
|
|
|
license = this.$license.data( 'license' ) || '',
|
|
|
|
author = this.$author.text(),
|
|
|
|
linkTitle = ( license + ( author ? ' (' + author + ')' : '' ) ).trim(),
|
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
owtId = 'mw-mlb-use-file-onwiki-thumb',
|
|
|
|
ownId = 'mw-mlb-use-file-onwiki-normal',
|
|
|
|
owId = 'mw-mlb-use-file-offwiki',
|
|
|
|
|
|
|
|
$owtLabel = $( '<label>' )
|
|
|
|
.prop( 'for', owtId )
|
|
|
|
.text( mw.message( 'multimediaviewer-use-file-owt' ).text() ),
|
|
|
|
|
|
|
|
$owtField = $( '<input>' )
|
|
|
|
.prop( 'type', 'text' )
|
|
|
|
.prop( 'id', owtId )
|
|
|
|
.prop( 'readonly', true )
|
2013-11-28 20:57:01 +00:00
|
|
|
.focus( selectAllOnEvent )
|
2013-11-25 23:51:40 +00:00
|
|
|
.val( '[[' + filename + '|thumb|' + desc + ']]' ),
|
|
|
|
|
|
|
|
$onWikiThumb = $( '<div>' )
|
|
|
|
.append( $owtLabel,
|
|
|
|
$owtField
|
|
|
|
),
|
|
|
|
|
|
|
|
$ownLabel = $( '<label>' )
|
|
|
|
.prop( 'for', ownId )
|
|
|
|
.text( mw.message( 'multimediaviewer-use-file-own' ).text() ),
|
|
|
|
|
|
|
|
$ownField = $( '<input>' )
|
|
|
|
.prop( 'type', 'text' )
|
|
|
|
.prop( 'id', ownId )
|
|
|
|
.prop( 'readonly', true )
|
2013-11-28 20:57:01 +00:00
|
|
|
.focus( selectAllOnEvent )
|
2013-11-25 23:51:40 +00:00
|
|
|
.val( '[[' + filename + '|' + desc + ']]' ),
|
|
|
|
|
|
|
|
$onWikiNormal = $( '<div>' )
|
|
|
|
.append(
|
|
|
|
$ownLabel,
|
|
|
|
$ownField
|
|
|
|
),
|
|
|
|
|
|
|
|
$owLabel = $( '<label>' )
|
|
|
|
.prop( 'for', owId )
|
|
|
|
.text( mw.message( 'multimediaviewer-use-file-offwiki' ).text() ),
|
|
|
|
|
|
|
|
$owField = $( '<input>' )
|
|
|
|
.prop( 'type', 'text' )
|
|
|
|
.prop( 'id', owId )
|
|
|
|
.prop( 'readonly', true )
|
2013-11-28 20:57:01 +00:00
|
|
|
.focus( selectAllOnEvent )
|
2013-12-18 23:20:58 +00:00
|
|
|
.val( '<a href="' + finalLink + ( linkTitle ? '" title="' + linkTitle : '' ) + '" ><img src="' + src + '" /></a>' ),
|
2013-11-27 22:58:31 +00:00
|
|
|
|
2013-11-25 23:51:40 +00:00
|
|
|
|
|
|
|
$offWiki = $( '<div>' )
|
|
|
|
.append(
|
|
|
|
$owLabel,
|
|
|
|
$owField
|
|
|
|
);
|
|
|
|
|
|
|
|
this.$dialog = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-use-file-dialog' )
|
|
|
|
.append(
|
|
|
|
$onWikiThumb,
|
|
|
|
$onWikiNormal,
|
|
|
|
$offWiki
|
|
|
|
)
|
|
|
|
.dialog( {
|
2013-11-28 05:41:46 +00:00
|
|
|
width: 750,
|
|
|
|
close: function () {
|
|
|
|
// Delete the dialog object
|
|
|
|
mw.mediaViewer.ui.$dialog = undefined;
|
|
|
|
}
|
2013-11-25 23:51:40 +00:00
|
|
|
} );
|
|
|
|
|
2013-11-28 20:57:01 +00:00
|
|
|
$owtField.focus();
|
2013-11-25 23:51:40 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
LIP.initializeAboutLinks = function () {
|
|
|
|
this.$mmvAboutLink = $( '<a>' )
|
|
|
|
.prop( 'href', mw.config.get( 'wgMultimediaViewer' ).infoLink )
|
|
|
|
.text( mw.message( 'multimediaviewer-about-mmv' ).text() )
|
|
|
|
.addClass( 'mw-mlb-mmv-about-link' );
|
|
|
|
|
|
|
|
this.$mmvDiscussLink = $( '<a>' )
|
|
|
|
.prop( 'href', mw.config.get( 'wgMultimediaViewer' ).discussionLink )
|
|
|
|
.text( mw.message( 'multimediaviewer-discuss-mmv' ).text() )
|
|
|
|
.addClass( 'mw-mlb-mmv-discuss-link' );
|
|
|
|
|
|
|
|
this.$mmvAboutLinks = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-mmv-about-links' )
|
|
|
|
.append(
|
|
|
|
this.$mmvAboutLink,
|
|
|
|
' | ',
|
|
|
|
this.$mmvDiscussLink
|
|
|
|
)
|
|
|
|
.appendTo( this.$imageMetadata );
|
|
|
|
};
|
|
|
|
|
2013-11-26 03:37:01 +00:00
|
|
|
LIP.initializeNavigation = function () {
|
2013-12-06 20:10:51 +00:00
|
|
|
this.handleKeyDown = this.handleKeyDown || function ( e ) {
|
2013-11-26 03:37:01 +00:00
|
|
|
var isRtl = $( document.body ).hasClass( 'rtl' );
|
|
|
|
|
|
|
|
switch ( e.keyCode ) {
|
|
|
|
case 37:
|
|
|
|
// Left arrow
|
|
|
|
if ( isRtl ) {
|
|
|
|
mw.mediaViewer.nextImage();
|
|
|
|
} else {
|
|
|
|
mw.mediaViewer.prevImage();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 39:
|
|
|
|
// Right arrow
|
|
|
|
if ( isRtl ) {
|
|
|
|
mw.mediaViewer.prevImage();
|
|
|
|
} else {
|
|
|
|
mw.mediaViewer.nextImage();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-12-06 20:10:51 +00:00
|
|
|
};
|
2013-11-26 03:37:01 +00:00
|
|
|
|
|
|
|
this.$nextButton = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-next-image disabled' )
|
|
|
|
.html( ' ' )
|
|
|
|
.click( function () {
|
|
|
|
mw.mediaViewer.nextImage();
|
|
|
|
} )
|
|
|
|
.appendTo( this.$main );
|
|
|
|
|
|
|
|
this.$prevButton = $( '<div>' )
|
|
|
|
.addClass( 'mw-mlb-prev-image disabled' )
|
|
|
|
.html( ' ' )
|
|
|
|
.click( function () {
|
|
|
|
mw.mediaViewer.prevImage();
|
|
|
|
} )
|
|
|
|
.appendTo( this.$main );
|
|
|
|
};
|
|
|
|
|
2013-12-02 19:46:52 +00:00
|
|
|
LIP.toggleMetadata = function () {
|
2013-12-10 23:22:40 +00:00
|
|
|
var off = this.$controlBar.offset(),
|
|
|
|
scroll = this.$main.scrollTop();
|
|
|
|
if ( scroll > 0 ) {
|
|
|
|
this.$main.animate( {
|
|
|
|
scrollTop: 0
|
|
|
|
}, 400 );
|
|
|
|
} else {
|
|
|
|
this.$main.animate( {
|
|
|
|
scrollTop: off.top - 96
|
|
|
|
}, 400 );
|
|
|
|
}
|
2013-12-02 19:46:52 +00:00
|
|
|
};
|
|
|
|
|
2013-12-11 02:08:07 +00:00
|
|
|
mw.LightboxInterface = LightboxInterface;
|
2013-12-02 19:43:02 +00:00
|
|
|
}( mediaWiki, jQuery, OO, window.LightboxInterface ) );
|