mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
26 lines
521 B
JavaScript
26 lines
521 B
JavaScript
/*!
|
|
{
|
|
"name": "SVG",
|
|
"property": "svg",
|
|
"caniuse": "svg",
|
|
"tags": ["svg"],
|
|
"authors": ["Erik Dahlstrom"],
|
|
"polyfills": [
|
|
"svgweb",
|
|
"raphael",
|
|
"amplesdk",
|
|
"canvg",
|
|
"svg-boilerplate",
|
|
"sie",
|
|
"dojogfx",
|
|
"fabricjs"
|
|
]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for SVG in `<embed>` or `<object>` elements.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('svg', !!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect);
|
|
});
|