mirror of
https://github.com/gnh1201/welsonjs.git
synced 2026-01-18 23:36:47 +00:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
define(['docElement'], function(docElement) {
|
|
/**
|
|
* A convenience helper to check if the document we are running in is an SVG document
|
|
*
|
|
* @access private
|
|
* @returns {boolean}
|
|
*/
|
|
var isSVG = docElement.nodeName.toLowerCase() === 'svg';
|
|
|
|
return isSVG;
|
|
});
|