Files
tubestation/devtools/client/webconsole/new-console-output/main.js
Tim Nguyen 3c6aca80ee Bug 1341037 - Fix broken Browser Console. r=nchevobbe
MozReview-Commit-ID: 5gIYVBNCILb
2017-02-23 16:03:14 +01:00

27 lines
1.0 KiB
JavaScript

/* 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/. */
/* global BrowserLoader */
"use strict";
var Cu = Components.utils;
const { BrowserLoader } = Cu.import("resource://devtools/client/shared/browser-loader.js", {});
this.NewConsoleOutput = function (parentNode, jsterm, toolbox, owner, serviceContainer) {
// Initialize module loader and load all modules of the new inline
// preview feature. The entire code-base doesn't need any extra
// privileges and runs entirely in content scope.
let NewConsoleOutputWrapper = BrowserLoader({
baseURI: "resource://devtools/client/webconsole/new-console-output/",
// The toolbox is not available for the browser console.
commonLibRequire: toolbox ? toolbox.browserRequire : null,
window
}).require("./new-console-output-wrapper");
return new NewConsoleOutputWrapper(
parentNode, jsterm, toolbox, owner, serviceContainer);
};