2014-03-04 11:53:53 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This file is used to do the global initialization that we want on the real pages,
|
|
|
|
// but do not want in the tests.
|
2018-11-12 16:33:24 +00:00
|
|
|
( function () {
|
2016-07-18 13:49:27 +00:00
|
|
|
var bootstrap;
|
|
|
|
|
2015-01-23 12:48:27 +00:00
|
|
|
if ( !mw.mmv.isBrowserSupported() ) {
|
2014-03-31 15:04:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-18 13:49:27 +00:00
|
|
|
bootstrap = new mw.mmv.MultimediaViewerBootstrap();
|
2014-03-04 11:53:53 +00:00
|
|
|
|
2017-01-06 15:04:56 +00:00
|
|
|
$( function () {
|
2014-03-04 11:53:53 +00:00
|
|
|
bootstrap.setupEventHandlers();
|
|
|
|
} );
|
|
|
|
|
|
|
|
mw.mmv.bootstrap = bootstrap;
|
2018-11-12 16:33:24 +00:00
|
|
|
}() );
|