Check if turbo-nag exists and don't initialize Gears on every page load to check if it's enabled only check if it's installed to prevent crash in Firefox 3.0.10. Fixes #10083

git-svn-id: https://develop.svn.wordpress.org/trunk@11538 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-06-10 02:52:16 +00:00
parent 77a332b2fe
commit 7f321b9b90
3 changed files with 16 additions and 21 deletions
+14 -19
View File
@@ -241,32 +241,27 @@ jQuery(document).ready( function($) {
$('div.default-password-nag').hide();
return false;
});
});
(function(){
if ( 'undefined' != typeof google && google.gears ) return;
jQuery(document).ready( function($){
var turboNag = $('.turbo-nag');
if ( !turboNag.length || ('undefined' != typeof(google) && google.gears) )
return;
var gf = false;
if ( 'undefined' != typeof GearsFactory ) {
gf = new GearsFactory();
return;
} else {
try {
if ( window.ActiveXObject ) {
gf = new ActiveXObject('Gears.Factory');
if ( gf && gf.getBuildInfo().indexOf('ie_mobile') != -1 )
gf.privateSetGlobalObject(this);
} else if ( ( 'undefined' != typeof navigator.mimeTypes ) && navigator.mimeTypes['application/x-googlegears'] ) {
gf = document.createElement("object");
gf.style.display = "none";
gf.width = 0;
gf.height = 0;
gf.type = "application/x-googlegears";
document.documentElement.appendChild(gf);
if ( ( 'undefined' != typeof window.ActiveXObject && ActiveXObject('Gears.Factory') ) ||
( 'undefined' != typeof navigator.mimeTypes && navigator.mimeTypes['application/x-googlegears'] ) ) {
return;
}
} catch(e){}
}
if ( gf && gf.hasPermission )
return;
jQuery('.turbo-nag').show();
})();
turboNag.show();
});