moved $.support if statement back to mobile.js so it'll work for now.

This commit is contained in:
scottjehl 2010-09-14 11:48:06 -04:00
parent eb2805f9d9
commit 34b3dcaabc
2 changed files with 6 additions and 4 deletions

View file

@ -7,6 +7,11 @@
* http://jquery.org/license
*/
(function( $, window, undefined ) {
// if we're missing support for any of these, then we're a C-grade browser
if ( !$.support.display || !$.support.position || !$.support.overflow || !$.support.floatclear ) {
return;
}
var $window = $(window),
$html = $('html'),
$head = $('head'),

View file

@ -45,7 +45,4 @@ $.extend( $.support, {
fakeBody.remove();
})();
// if we're missing support for any of these, then we're a C-grade browser
if ( !$.support.display || !$.support.position || !$.support.overflow || !$.support.floatclear ) {
return;
}