Bug 726347 - [Page Thumbnails] add preference to disable capturing thumbnails in the background; r=dao

This commit is contained in:
Tim Taubert 2012-04-11 21:49:44 +02:00
Родитель d353100cfc
Коммит 78bdf9e1be
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -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) {