mediawiki-extensions-Revisi.../modules/ext.RevisionSlider.lazy.js
Adam Wight d369701709 Migrate Settings module to packageFiles
Change-Id: I984404dd216fff469d7891f4f69a92d83d19d1c4
2020-04-05 01:37:15 +02:00

23 lines
583 B
JavaScript

( function () {
var Settings = require( 'ext.RevisionSlider.Settings' ),
settings = new Settings(),
autoExpand = settings.shouldAutoExpand();
if ( autoExpand ) {
mw.loader.load( 'ext.RevisionSlider.init' );
} else {
$( '.mw-revslider-toggle-button' ).on( 'click',
function () {
mw.loader.load( 'ext.RevisionSlider.init' );
}
);
}
$( '.mw-revslider-toggle-button' ).on( 'keypress', function ( event ) {
if ( event.which === 13 || event.which === 32 ) {
event.preventDefault();
$( '.mw-revslider-toggle-button' ).trigger( 'click' );
}
} );
}() );