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

Commit

Permalink
support: Fix cssTransition test to kick out all ie versions < 10
Browse files Browse the repository at this point in the history
  • Loading branch information
arschmitz committed Jan 2, 2013
1 parent 9ff7722 commit 99693ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.mobile.support.js
Expand Up @@ -131,7 +131,7 @@ $.mobile.browser.ie = (function() {


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

0 comments on commit 99693ee

Please sign in to comment.