Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Add err handler in JS example
Browse files Browse the repository at this point in the history
  • Loading branch information
grempe committed May 13, 2016
1 parent 3dff6c5 commit d407dfc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/clients/javascript/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ $(document).ready(function () {
// sendSaltToServer(result.salt)
// sendVerifierToServer(result.verifier)

if (err) {
console.log(err.stack);
}

var A = client.getPublicKey()

// Auth Phase 1
Expand Down

0 comments on commit d407dfc

Please sign in to comment.