Bug 1224751 - Use the window's console in BrowserLoader. r=jlongster

--HG--
extra : rebase_source : cd01f7bfacf5d8799a2d843475c4a1475ef8ffe5
This commit is contained in:
J. Ryan Stinnett 2016-01-20 12:34:44 -06:00
Родитель ca1ce2967c
Коммит 8773016574
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -70,6 +70,9 @@ function BrowserLoader(baseURI, window) {
return require(uri);
},
globals: {
// Allow modules to use the window's console to ensure logs appear in a
// tab toolbox, if one exists, instead of just the browser console.
console: window.console,
// Make sure 'define' function exists. This allows reusing AMD modules.
define: function(callback) {
callback(this.require, this.exports, this.module);