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

Commit

Permalink
Support: Made support for pseudo elements a requirement for A grade.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Apr 20, 2013
1 parent ac93ac0 commit 60aa05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.mobile.support.js
Expand Up @@ -237,7 +237,7 @@ nokiaLTE7_3 = (function() {
// default enhanced qualifications are media query support OR IE 7+

$.mobile.gradeA = function() {
return ( $.support.mediaquery || $.mobile.browser.oldIE && $.mobile.browser.oldIE >= 7 ) && ( $.support.boundingRect || $.fn.jquery.match(/1\.[0-7+]\.[0-9+]?/) !== null );
return ( ( $.support.mediaquery && $.support.cssPseudoElement ) || $.mobile.browser.oldIE && $.mobile.browser.oldIE >= 8 ) && ( $.support.boundingRect || $.fn.jquery.match(/1\.[0-7+]\.[0-9+]?/) !== null );
};

$.mobile.ajaxBlacklist =
Expand Down

0 comments on commit 60aa05b

Please sign in to comment.