Skip to content

Commit

Permalink
bugfix which should allow aurelia to register as a plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmalonenz committed Mar 18, 2016
1 parent 44e8687 commit 05ab65c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function configure(config, callback) {
let defaults = new Options();
config.container.registerInstance(GLOBAL_OPTIONS, defaults);

if (callback !== undefined && typeof(callback) === 'function') {
if (callback !== undefined && typeof callback === 'function') {
callback(defaults);
}

Expand Down

0 comments on commit 05ab65c

Please sign in to comment.