mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 16:36:28 -05:00
Wow--I can't spell!
This commit is contained in:
parent
ff97c70149
commit
9eed6a72a7
1 changed files with 4 additions and 4 deletions
|
@ -175,7 +175,7 @@ Diceware.is_mobile = function() {
|
|||
/**
|
||||
* Do some preliminary work, such as clearing out results and scrolling.
|
||||
*/
|
||||
Diceware.rollDiceHanlderPre = function() {
|
||||
Diceware.rollDiceHandlerPre = function() {
|
||||
|
||||
//
|
||||
// Clear out more space when mobile
|
||||
|
@ -212,7 +212,7 @@ Diceware.rollDiceHanlderPre = function() {
|
|||
*/
|
||||
Diceware.rollDiceHandler = function(e) {
|
||||
|
||||
Diceware.rollDiceHanlderPre();
|
||||
Diceware.rollDiceHandlerPre();
|
||||
|
||||
//
|
||||
// Make our dice rolls
|
||||
|
@ -250,7 +250,7 @@ Diceware.rollDiceHandler = function(e) {
|
|||
|
||||
});
|
||||
|
||||
Diceware.rollDiceHanlderPost(rolls, passphrase, num_passwords);
|
||||
Diceware.rollDiceHandlerPost(rolls, passphrase, num_passwords);
|
||||
|
||||
});
|
||||
|
||||
|
@ -260,7 +260,7 @@ Diceware.rollDiceHandler = function(e) {
|
|||
/**
|
||||
* Our post work, of displaying the results of our dice rolls.
|
||||
*/
|
||||
Diceware.rollDiceHanlderPost = function(rolls, passphrase, num_passwords) {
|
||||
Diceware.rollDiceHandlerPost = function(rolls, passphrase, num_passwords) {
|
||||
|
||||
//
|
||||
// Populate our results by cloning the hidden base rows which
|
||||
|
|
Loading…
Reference in a new issue