2011-07-13 23:17:31 +04:00
|
|
|
# -*- Mode: javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-07-13 23:17:31 +04:00
|
|
|
|
2011-11-18 01:21:25 +04:00
|
|
|
let Cc = Components.classes;
|
|
|
|
let Ci = Components.interfaces;
|
|
|
|
let Cu = Components.utils;
|
2011-07-13 23:17:31 +04:00
|
|
|
|
|
|
|
// Bug 671101 - directly using webNavigation in this context
|
|
|
|
// causes docshells to leak
|
2011-07-19 14:50:36 +04:00
|
|
|
__defineGetter__("webNavigation", function () {
|
2011-07-13 23:17:31 +04:00
|
|
|
return docShell.QueryInterface(Ci.nsIWebNavigation);
|
|
|
|
});
|
|
|
|
|
2011-07-19 14:50:36 +04:00
|
|
|
addMessageListener("WebNavigation:LoadURI", function (message) {
|
2011-07-13 23:17:31 +04:00
|
|
|
let flags = message.json.flags || webNavigation.LOAD_FLAGS_NONE;
|
|
|
|
|
|
|
|
webNavigation.loadURI(message.json.uri, flags, null, null, null);
|
|
|
|
});
|
2011-07-29 00:20:52 +04:00
|
|
|
|
|
|
|
addMessageListener("Browser:HideSessionRestoreButton", function (message) {
|
|
|
|
// Hide session restore button on about:home
|
|
|
|
let doc = content.document;
|
|
|
|
let container;
|
|
|
|
if (doc.documentURI.toLowerCase() == "about:home" &&
|
|
|
|
(container = doc.getElementById("sessionRestoreContainer"))){
|
|
|
|
container.hidden = true;
|
|
|
|
}
|
|
|
|
});
|