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

Commit

Permalink
Fixes #4521 - Exclude Opera from support.cssTransitions as long as we…
Browse files Browse the repository at this point in the history
… are not ready to support it.
  • Loading branch information
jaspermdegroot committed Jun 27, 2012
1 parent 244bf6d commit d4a36ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.mobile.support.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ $.mobile.browser.ie = (function() {
$.extend( $.support, {
orientation: "orientation" in window && "onorientationchange" in window,
touch: "ontouchend" in document,
cssTransitions: "WebKitTransitionEvent" in window || validStyle( 'transition', 'height 100ms linear' ),
cssTransitions: ( "WebKitTransitionEvent" in window || validStyle( 'transition', 'height 100ms linear' ) ) && !opera,
pushState: "pushState" in history && "replaceState" in history,
mediaquery: $.mobile.media( "only all" ),
cssPseudoElement: !!propExists( "content" ),
Expand Down

0 comments on commit d4a36ee

Please sign in to comment.