mediawiki-extensions-Multim.../resources/mmv/mmv.base.js
Gilles Dubuc 81ab508697 Feature detection for MV load: add SVG, remove Object.create
OOJS polyfills Object.create now so there is no need to check for its
existence before loading OOJS-dependent code. On the other hand,
MediaViewer uses SVG icons extensively and the interface cannot be used
if they don't show up.

Bug: 70553
Change-Id: I716e12d4061cfc5c64ccca4563bc30a4394494af
Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/863
2014-09-09 10:54:11 +00:00

34 lines
1.2 KiB
JavaScript

/*
* 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/>.
*/
// Included on every page which has images so keep it lightweight.
( function ( mw ) {
mw.mmv = {
/**
* Feature-detects SVG support. MuyltimediaViewer uses SVG icons extensively and is
* unusable without them.
* @member mw.mmv.MultimediaViewer
* @return {boolean}
*/
isBrowserSupported : function () {
// From modernizr 2.6.1
var ns = { 'svg': 'http://www.w3.org/2000/svg' };
return !!document.createElementNS && !!document.createElementNS( ns.svg, 'svg' ).createSVGRect;
}
};
}( mediaWiki ) );