Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/addon/lib/main.js
blob: 31e5c30506f161f906ed704fb6ec53dd5809c8bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var windowUtils = require("window-utils");

windowUtils = new windowUtils.WindowTracker({
    onTrack: function (window) {
        var toolbox = window.document.getElementById("navigator-toolbox");
        toolbox.style.display = "none";

        var addonbar = window.document.getElementById("addon-bar");
        addonbar.style.display = "none";

        var content = window.document.getElementById("content");
        content.getNotificationBox().removeCurrentNotification();
   }
});