Fix cases.

Fixes #5526
This commit is contained in:
LeeDr 2015-12-08 12:34:47 -06:00 committed by Lee Drengenberg
parent 859e115802
commit 132552ce58

View file

@ -7,13 +7,13 @@ define(function (require) {
var defaultTimeout = config.timeouts.default; var defaultTimeout = config.timeouts.default;
var common; var common;
function settings_page(remote) { function settingsPage(remote) {
this.remote = remote; this.remote = remote;
common = new Common(this.remote); common = new Common(this.remote);
} }
settings_page.prototype = { settingsPage.prototype = {
constructor: settings_page, constructor: settingsPage,
clickAdvancedTab: function () { clickAdvancedTab: function () {
common.debug('in clickAdvancedTab'); common.debug('in clickAdvancedTab');
@ -322,5 +322,5 @@ define(function (require) {
} }
}; };
return settings_page; return settingsPage;
}); });