mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
17 lines
550 B
JavaScript
17 lines
550 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS Overflow Scrolling",
|
|
"property": "overflowscrolling",
|
|
"tags": ["css"],
|
|
"builderAliases": ["css_overflow_scrolling"],
|
|
"warnings": ["Introduced in iOS5b2. API is subject to change."],
|
|
"notes": [{
|
|
"name": "Article on iOS overflow scrolling",
|
|
"href": "https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('overflowscrolling', testAllProps('overflowScrolling', 'touch', true));
|
|
});
|