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

Commit 60aa05b

Browse files
Support: Made support for pseudo elements a requirement for A grade.
1 parent ac93ac0 commit 60aa05b

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
@@ -237,7 +237,7 @@ nokiaLTE7_3 = (function() {
237237
// default enhanced qualifications are media query support OR IE 7+
238238

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

243243
$.mobile.ajaxBlacklist =

0 commit comments

Comments
 (0)