Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

Commit

Permalink
Fix a broken require for jwcrypto
Browse files Browse the repository at this point in the history
Not sure why we never caught this because it throws an exception
as soon as you call prepareDeps().
  • Loading branch information
Francois Marier committed Jun 19, 2012
1 parent 0c611ce commit b0bce2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/static/shared/storage.js
Expand Up @@ -39,7 +39,7 @@ BrowserID.Storage = (function() {

function prepareDeps() {
if (!jwcrypto) {
jwcrypto = require("./jwcrypto");
jwcrypto = require("./lib/jwcrypto");
}
}

Expand Down

0 comments on commit b0bce2c

Please sign in to comment.