Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into hidden-773347
Browse files Browse the repository at this point in the history
  • Loading branch information
joewalker committed Aug 2, 2012
2 parents 44fb4ce + 0ba06fd commit 6d682b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mozilla/build/module-prefix.jsm
Expand Up @@ -26,7 +26,7 @@

var EXPORTED_SYMBOLS = [ "{EXPORTED_SYMBOLS}" ];

Components.utils.import("resource:///modules/devtools/Require.jsm");
Components.utils.import("resource:///modules/devtools/Console.jsm");
Components.utils.import("resource://gre/modules/devtools/Require.jsm");
Components.utils.import("resource://gre/modules/devtools/Console.jsm");
Components.utils.import("resource:///modules/devtools/Browser.jsm");

4 changes: 2 additions & 2 deletions mozilla/build/prefix-test.js
Expand Up @@ -54,13 +54,13 @@

let [ define, require ] = (function() {
let tempScope = {};
Components.utils.import("resource:///modules/devtools/Require.jsm", tempScope);
Components.utils.import("resource://gre/modules/devtools/Require.jsm", tempScope);
return [ tempScope.define, tempScope.require ];
})();

let console = (function() {
let tempScope = {};
Components.utils.import("resource:///modules/devtools/Console.jsm", tempScope);
Components.utils.import("resource://gre/modules/devtools/Console.jsm", tempScope);
return console;
})();

Expand Down

0 comments on commit 6d682b7

Please sign in to comment.