Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit 69c96ca

Browse files
author
Alexander Schmitz
committed
support: Fix cssTransition test to kick out all ie versions < 10
1 parent 5bbc244 commit 69c96ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.mobile.support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ $.mobile.browser.ie = (function() {
127127

128128

129129
$.extend( $.support, {
130-
cssTransitions: "WebKitTransitionEvent" in window || validStyle( 'transition', 'height 100ms linear' ) && !opera,
130+
cssTransitions: "WebKitTransitionEvent" in window || validStyle( 'transition', 'height 100ms linear', [ "Webkit", "Moz", "" ] ) && $.mobile.browser.ie < 10 && !opera,
131131
pushState: "pushState" in history && "replaceState" in history,
132132
mediaquery: $.mobile.media( "only all" ),
133133
cssPseudoElement: !!propExists( "content" ),

0 commit comments

Comments
 (0)