2014-01-10 21:11:21 +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/>.
|
|
|
|
*/
|
|
|
|
|
2014-03-04 11:53:53 +00:00
|
|
|
// Included on every page which has images so keep it lightweight.
|
2014-07-28 23:10:15 +00:00
|
|
|
( function ( mw ) {
|
2014-03-31 15:04:53 +00:00
|
|
|
mw.mmv = {
|
2014-07-28 23:10:15 +00:00
|
|
|
/**
|
2014-09-09 09:05:44 +00:00
|
|
|
* Feature-detects SVG support. MuyltimediaViewer uses SVG icons extensively and is
|
|
|
|
* unusable without them.
|
2016-07-18 13:49:27 +00:00
|
|
|
*
|
2014-07-28 23:10:15 +00:00
|
|
|
* @member mw.mmv.MultimediaViewer
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
2016-07-18 13:49:27 +00:00
|
|
|
isBrowserSupported: function () {
|
2014-09-09 09:05:44 +00:00
|
|
|
// From modernizr 2.6.1
|
2016-07-18 13:49:27 +00:00
|
|
|
var ns = { svg: 'http://www.w3.org/2000/svg' };
|
2014-09-09 09:05:44 +00:00
|
|
|
return !!document.createElementNS && !!document.createElementNS( ns.svg, 'svg' ).createSVGRect;
|
2014-03-31 15:04:53 +00:00
|
|
|
}
|
|
|
|
};
|
2014-07-28 23:10:15 +00:00
|
|
|
}( mediaWiki ) );
|