mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS Transitions",
|
|
"property": "csstransitions",
|
|
"caniuse": "css-transitions",
|
|
"tags": ["css"]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('csstransitions', testAllProps('transition', 'all', true));
|
|
});
|