Changed require calls for own modules. Otherwise the harness-options.json will contain wrong module names.

This commit is contained in:
kkapsner 2015-06-23 13:14:50 +02:00
parent cc8ac1c22d
commit 519f6a4c58
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
(function(){
"use strict";
require("./stylePreferencePane.js");
require("./stylePreferencePane");
var self = require("sdk/self");
var pageMod = require("sdk/page-mod");
@ -16,7 +16,7 @@
var _ = require("sdk/l10n").get;
var tabUtils = require("sdk/tabs/utils");
var sharedFunctions = require("./sharedFunctions.js");
var sharedFunctions = require("./sharedFunctions");
var getDomainRegExpList = sharedFunctions.getDomainRegExpList;
// preferences
Object.keys(prefs).forEach(function(pref){