Skip to content

Commit

Permalink
Fix version number parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhunath committed Oct 27, 2016
1 parent c1f4d2d commit 207b375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MasterPassword/Web/js/main.js
Expand Up @@ -3,7 +3,7 @@ var mpw, error;
function updateMPW() {
mpw = null;
startWork();
mpw = new MPW( $('#userName')[0].value, $('#masterPassword')[0].value, $('#version')[0].valueAsNumber );
mpw = new MPW( $('#userName')[0].value, $('#masterPassword')[0].value, $('#version')[0].value );
mpw.key.then(
function() {
doneWork();
Expand Down

0 comments on commit 207b375

Please sign in to comment.