зеркало из https://github.com/mozilla/gecko-dev.git
Bug 726347 - [Page Thumbnails] add preference to disable capturing thumbnails in the background; r=dao
This commit is contained in:
Родитель
d353100cfc
Коммит
78bdf9e1be
|
@ -26,6 +26,11 @@ let gBrowserThumbnails = {
|
|||
_tabEvents: ["TabClose", "TabSelect"],
|
||||
|
||||
init: function Thumbnails_init() {
|
||||
try {
|
||||
if (Services.prefs.getBoolPref("browser.pagethumbnails.capturing_disabled"))
|
||||
return;
|
||||
} catch (e) {}
|
||||
|
||||
gBrowser.addTabsProgressListener(this);
|
||||
|
||||
this._tabEvents.forEach(function (aEvent) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче