Bug 294543 Reporter Doesn't get the Correct Product Name r=mconnor a=asa

This commit is contained in:
robert%accettura.com 2005-05-18 13:49:34 +00:00
Родитель e536e90423
Коммит 67562eef8d
1 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -346,6 +346,17 @@ function getProduct() {
.getProtocolHandler('http')
.QueryInterface(Components.interfaces.nsIHttpProtocolHandler).misc.substring(3);
}
return navigator.vendor+'/'+navigator.vendorSub;
// Firefox < 1.0+
else if (navigator.vendor != ''){
return window.navigator.vendor+'/'+window.navigator.vendorSub;
}
// Firefox 1.0+
try {
var prefs = Components.classes["@mozilla.org/preferences-service;1"].
getService(Components.interfaces.nsIPrefService);
return prefs.getCharPref("general.useragent.extra.firefox");
}
catch(ex) {
return "Unknown";
}
}