зеркало из https://github.com/mozilla/pjs.git
Bug 294543 Reporter Doesn't get the Correct Product Name r=mconnor a=asa
This commit is contained in:
Родитель
e536e90423
Коммит
67562eef8d
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче