Skip to content

Commit

Permalink
Merge pull request #53 from gjcoombes/master
Browse files Browse the repository at this point in the history
Fix for broken applitude reference
  • Loading branch information
ericelliott committed Nov 11, 2015
2 parents 20114c3 + b99b285 commit 42880a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/browser-cuid.js
Expand Up @@ -99,12 +99,12 @@
};

// don't change anything from here down.
if (app.register) {
if (app && app.register) {
app.register(namespace, api);
} else if (typeof module !== 'undefined') {
module.exports = api;
} else {
app[namespace] = api;
}

}(this.applitude || this));
}(this));

0 comments on commit 42880a6

Please sign in to comment.