Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f99b8b commit e907efcCopy full SHA for e907efc
1 file changed
swipe.js
@@ -19,7 +19,7 @@ function Swipe(container, options) {
19
addEventListener: !!window.addEventListener,
20
touch: ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch,
21
transitions: (function(temp) {
22
- var props = ['transformProperty', 'WebkitTransform', 'MozTransform', 'OTransform', 'msTransform'];
+ var props = ['transitionProperty', 'WebkitTransition', 'MozTransition', 'OTransition', 'msTransition'];
23
for ( var i in props ) if (temp.style[ props[i] ] !== undefined) return true;
24
return false;
25
})(document.createElement('swipe'))
0 commit comments