зеркало из https://github.com/mozilla/pjs.git
Bug 389478 - "Add favicons on back/forward menus" [p=ventnor.bugzilla@yahoo.com.au (Michael Ventnor) ui-r=beltzner r=gavin a1.9=schrep]
This commit is contained in:
Родитель
9fdc154478
Коммит
28aa5d33a0
|
@ -2948,6 +2948,16 @@ function FillHistoryMenu(aParent) {
|
|||
|
||||
item.setAttribute("label", entry.title || entry.URI.spec);
|
||||
item.setAttribute("index", j);
|
||||
|
||||
if (j != index) {
|
||||
try {
|
||||
let iconURL = Cc["@mozilla.org/browser/favicon-service;1"]
|
||||
.getService(Ci.nsIFaviconService)
|
||||
.getFaviconForPage(entry.URI).spec;
|
||||
item.setAttribute("image", iconURL);
|
||||
} catch (ex) {}
|
||||
}
|
||||
|
||||
if (j < index) {
|
||||
item.className = "unified-nav-back";
|
||||
item.setAttribute("tooltiptext", tooltipBack);
|
||||
|
|
Загрузка…
Ссылка в новой задаче