Skip to content

Commit

Permalink
Config is no longer a member so, use the local var
Browse files Browse the repository at this point in the history
  • Loading branch information
janodvarko committed Jun 25, 2013
1 parent fe62445 commit 47b88bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/firebug/editor/sourceEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ SourceEditor.prototype =
for (var prop in SourceEditor.DefaultConfig)
{
var value = prop in config ? config[prop] : SourceEditor.DefaultConfig[prop];
Object.defineProperty(this.config, prop, genPropDesc(value));
Object.defineProperty(config, prop, genPropDesc(value));
}

var self = this;
Expand Down

0 comments on commit 47b88bb

Please sign in to comment.