mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
17 lines
485 B
JavaScript
17 lines
485 B
JavaScript
/*!
|
|
{
|
|
"name": "Flexbox (tweener)",
|
|
"property": "flexboxtweener",
|
|
"tags": ["css"],
|
|
"polyfills": ["flexie"],
|
|
"notes": [{
|
|
"name": "The _inbetween_ flexbox",
|
|
"href": "https://www.w3.org/TR/2011/WD-css3-flexbox-20111129/"
|
|
}],
|
|
"warnings": ["This represents an old syntax, not the latest standard syntax."]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('flexboxtweener', testAllProps('flexAlign', 'end', true));
|
|
});
|