Skip to content

Commit

Permalink
Fix: prevent minimizer from messing up index settings code.
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgian committed May 3, 2013
1 parent 73c799f commit 783de88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/index.js
Expand Up @@ -317,8 +317,8 @@ goog.scope(function() {

if (index['settings']) {
result.settings = {};
Object.keys(index.settings).forEach(function(key) {
result.settings[key] = index.settings[key];
Object.keys(index['settings']).forEach(function(key) {
result.settings[key] = index['settings'][key];
});
}

Expand Down

0 comments on commit 783de88

Please sign in to comment.