mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
15 lines
460 B
JavaScript
15 lines
460 B
JavaScript
|
/*!
|
||
|
*
|
||
|
* VisualEditor skip function for classList.js.
|
||
|
*
|
||
|
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
|
||
|
* Adapted from http://purl.eligrey.com/github/classList.js/blob/master/classList.js
|
||
|
*/
|
||
|
return !!(
|
||
|
'classList' in document.createElement( '_' ) &&
|
||
|
!(
|
||
|
document.createElementNS &&
|
||
|
!( 'classList' in document.createElementNS( 'http://www.w3.org/2000/svg', 'g' ) )
|
||
|
)
|
||
|
);
|