Skip to content

Commit

Permalink
Style change for consitency
Browse files Browse the repository at this point in the history
hopefully the last change. Code is easy. Collaboration is hard but worth the effort.
  • Loading branch information
trevorfox committed Aug 16, 2017
1 parent 872f3f8 commit 2c89276
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/groucho.js
Expand Up @@ -23,9 +23,10 @@ var groucho = window.groucho || {};
};

// Handle empty config.
if (!groucho.hasOwnProperty(config) {
if (!groucho.hasOwnProperty('config')) {
groucho.config = groucho.defaults;
} else {
}
else {
// Set empty configs to defaults.
for (var setting in defaults) {
if (!groucho.config.hasOwnProperty(setting)) {
Expand Down

0 comments on commit 2c89276

Please sign in to comment.