Misc Fixes

- Built prod version
- added missing semicolons
This commit is contained in:
Matt C 2016-12-03 21:33:19 +00:00
parent 560712cee3
commit b631feea74
5 changed files with 30 additions and 30 deletions

View file

@ -422,7 +422,7 @@ var Cipher = {
output += alphabet[(keyIndex + msgIndex) % 26].toUpperCase();
} else {
output += input[i];
fail++
fail++;
}
}
} else {
@ -469,7 +469,7 @@ var Cipher = {
output += alphabet[(msgIndex + alphabet.length - keyIndex) % 26].toUpperCase();
} else {
output += input[i];
fail++
fail++;
}
}
} else {