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

Commit 99693ee

Browse files
committed
support: Fix cssTransition test to kick out all ie versions < 10
1 parent 9ff7722 commit 99693ee

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
@@ -131,7 +131,7 @@ $.mobile.browser.ie = (function() {
131131

132132

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

0 commit comments

Comments
 (0)