2015-04-25 23:02:05 -04:00
|
|
|
/**
|
|
|
|
* Our main Javascript file.
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
|
|
|
|
var Diceware = {};
|
2015-04-25 23:02:05 -04:00
|
|
|
|
2015-04-27 20:48:57 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if we have a function that returns cryptographically random
|
|
|
|
* values. False otherwise.
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.i_can_has_good_crypto = function() {
|
2015-04-27 20:48:57 -04:00
|
|
|
|
|
|
|
if (window.crypto && window.crypto.getRandomValues) {
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
} // End of i_can_has_good_crypto()
|
|
|
|
|
|
|
|
|
2017-01-31 22:33:37 -05:00
|
|
|
/**
|
|
|
|
* Return a random integer between 1 max.
|
|
|
|
*/
|
|
|
|
Diceware.getRandomValue = function(max) {
|
|
|
|
|
|
|
|
if (max <= 0){
|
|
|
|
return(NaN);
|
|
|
|
}
|
|
|
|
|
2017-02-01 21:55:38 -05:00
|
|
|
if (Diceware.i_can_has_good_crypto()) {
|
|
|
|
var a = new Uint32Array(1);
|
|
|
|
window.crypto.getRandomValues(a);
|
|
|
|
retval = (a[0] % max);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// Fall back to something way less secure. The user has already
|
|
|
|
// been warned.
|
|
|
|
//
|
|
|
|
retval = Math.floor(Math.random() * max);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-31 22:33:37 -05:00
|
|
|
|
|
|
|
return(retval);
|
|
|
|
|
|
|
|
} // End of getRandomValue()
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a number from base 10 into base 6.
|
|
|
|
*
|
|
|
|
* @param integer roll The random value.
|
|
|
|
* @param integer num_dice The number of dice we're returning.
|
|
|
|
*
|
|
|
|
* @return array An array of the base 6 numbers.
|
|
|
|
*/
|
|
|
|
Diceware.getBase6 = function(roll, num_dice) {
|
|
|
|
|
|
|
|
var retval = [];
|
|
|
|
|
|
|
|
//
|
|
|
|
// Sanity check
|
|
|
|
//
|
|
|
|
var max_dice_roll = Math.pow(6, num_dice) - 1;
|
|
|
|
if (roll > max_dice_roll) {
|
|
|
|
throw("Value too large!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (roll < 0) {
|
|
|
|
throw("Value cannot be negative!");
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Go through each die, starting with the most significant one, and
|
|
|
|
// get its value.
|
|
|
|
//
|
|
|
|
var num_dice_left = num_dice - 1;
|
|
|
|
var dice_value_left = roll;
|
|
|
|
|
|
|
|
for (i = num_dice_left; i >= 0; i--) {
|
|
|
|
|
|
|
|
var die_value = Math.pow(6, i);
|
|
|
|
var value = Math.floor( dice_value_left / die_value);
|
|
|
|
var left = dice_value_left % die_value;
|
|
|
|
|
|
|
|
retval.push(value);
|
|
|
|
dice_value_left = dice_value_left - (die_value * value);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
|
|
|
|
} // End of getBase6()
|
|
|
|
|
|
|
|
|
2017-01-31 23:36:24 -05:00
|
|
|
/**
|
|
|
|
* Convert a base-6 number to a dice roll
|
|
|
|
*
|
|
|
|
* @param array roll An array of integers in base-6 notation
|
|
|
|
* @param integer num_dice The number of dice rolled
|
|
|
|
*
|
|
|
|
* @return array An array of integers representing dice rolls
|
|
|
|
*/
|
|
|
|
Diceware.convertBase6ToDice = function(roll, num_dice) {
|
|
|
|
|
|
|
|
var retval = [];
|
|
|
|
|
|
|
|
if (roll.length != num_dice) {
|
|
|
|
throw("Mismatch between size of roll (" + roll.length + ") and number of dice (" + num_dice + ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var k in roll) {
|
|
|
|
var num = roll[k];
|
|
|
|
|
|
|
|
if (num < 0) {
|
|
|
|
throw("Value " + num + " is negative!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num > 5) {
|
|
|
|
throw("Value " + num + " is too large!");
|
|
|
|
}
|
|
|
|
|
|
|
|
num++;
|
|
|
|
retval.push(num);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
|
|
|
|
} // End of convertBase6ToDice()
|
|
|
|
|
|
|
|
|
2017-02-01 00:02:19 -05:00
|
|
|
/**
|
|
|
|
* Get the maximum value from the number of dice we're rolling.
|
|
|
|
* This is in a separate function so it is testable.
|
|
|
|
*/
|
|
|
|
Diceware.getNumValuesFromNumDice = function(num_dice) {
|
|
|
|
|
|
|
|
var retval;
|
|
|
|
|
|
|
|
if (num_dice == 0) {
|
|
|
|
throw("Number of dice cannot be zero!");
|
|
|
|
|
|
|
|
} else if (num_dice < 0){
|
|
|
|
throw("Number of dice is negative!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = Math.pow(6, num_dice);
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
|
|
|
|
} // End of getNumValuesFromNumDice()
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is our main entry point for rolling dice.
|
|
|
|
*
|
|
|
|
* Get our maximum number for a random value, turn it into base-6,
|
|
|
|
* then turn it into a dice roll!
|
|
|
|
*
|
2017-02-01 21:50:33 -05:00
|
|
|
* @return object An object that contains a dice roll and the raw random value.
|
|
|
|
*
|
2017-02-01 00:02:19 -05:00
|
|
|
*/
|
|
|
|
Diceware.rollDice = function(num_dice) {
|
|
|
|
|
2017-02-01 21:50:33 -05:00
|
|
|
var retval = {};
|
2017-02-01 00:02:19 -05:00
|
|
|
|
|
|
|
var max = Diceware.getNumValuesFromNumDice(num_dice);
|
|
|
|
|
|
|
|
var random = Diceware.getRandomValue(max);
|
|
|
|
|
|
|
|
var base6 = Diceware.getBase6(random, num_dice);
|
|
|
|
|
|
|
|
var dice = Diceware.convertBase6ToDice(base6, num_dice);
|
|
|
|
|
2017-02-01 21:50:33 -05:00
|
|
|
retval.value = random;
|
|
|
|
retval.roll = dice;
|
2017-02-01 00:02:19 -05:00
|
|
|
|
|
|
|
return(retval);
|
|
|
|
|
|
|
|
} // End of rollDice()
|
|
|
|
|
|
|
|
|
2015-04-25 23:02:05 -04:00
|
|
|
/**
|
|
|
|
* Look up a word from our wordlist.
|
|
|
|
*
|
|
|
|
* @param object wordlist Our hash table of dice rolls and their corresponding words.
|
|
|
|
* @param integer index
|
|
|
|
*
|
|
|
|
* @return string The word from the dicelist
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.get_word = function(wordlist, index) {
|
2017-01-31 23:36:24 -05:00
|
|
|
|
2015-04-25 23:02:05 -04:00
|
|
|
var retval = wordlist[index];
|
2016-07-10 18:31:33 -04:00
|
|
|
|
|
|
|
if (retval) {
|
|
|
|
retval = retval[0].toUpperCase() + retval.slice(1);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
retval = "((Word not found in wordlist)) ";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-25 23:02:05 -04:00
|
|
|
return(retval);
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
}
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2015-04-26 15:32:56 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function displays each dice roll.
|
|
|
|
*
|
2015-04-26 16:02:56 -04:00
|
|
|
* @param array rows Array of rows of dice rolls that we had.
|
|
|
|
* @param object cb Our callback to fire when done
|
2015-11-10 23:39:31 -05:00
|
|
|
* @param integer in_fadein_duration How long before fading in a roll of dice
|
|
|
|
* @param integer in_fadeout_delay How long before fading out the diceroll
|
2015-04-26 15:32:56 -04:00
|
|
|
*
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.display_row = function(rows, cb, in_fadein_duration, in_fadeout_delay) {
|
2015-04-26 15:32:56 -04:00
|
|
|
|
2015-11-10 23:39:31 -05:00
|
|
|
var fadein_duration = in_fadein_duration || 250;
|
|
|
|
var fadeout_delay = in_fadeout_delay || 750;
|
2015-04-26 16:02:56 -04:00
|
|
|
|
2015-04-26 15:32:56 -04:00
|
|
|
if (rows.length) {
|
|
|
|
//
|
2015-04-27 21:34:14 -04:00
|
|
|
// Grab a row, and hide each of the dice and the word in it.
|
2015-04-26 15:32:56 -04:00
|
|
|
//
|
|
|
|
var row = rows.shift();
|
2015-04-27 21:34:14 -04:00
|
|
|
var html = row.hide().appendTo(".results");
|
|
|
|
html.find(".dice_element").each(function(i, value) {
|
|
|
|
jQuery(value).hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now show the row, and loop through each element, fading in
|
|
|
|
// the dice and the word in sequence.
|
|
|
|
//
|
|
|
|
html.show(fadein_duration, function() {
|
|
|
|
|
|
|
|
jQuery(this).find(".dice_element").each(function(i, value) {
|
|
|
|
var delay = i * 100;
|
|
|
|
setTimeout(function() {
|
|
|
|
jQuery(value).show();
|
|
|
|
}, delay);
|
|
|
|
|
|
|
|
});
|
2015-04-27 20:57:03 -04:00
|
|
|
|
2015-11-10 23:39:31 -05:00
|
|
|
//
|
|
|
|
// Decrease the delays with subsequent rolls so that users
|
|
|
|
// don't get impatent.
|
|
|
|
// (I know I did when rolling 8 dice!)
|
|
|
|
//
|
|
|
|
fadein_duration -= 25;
|
|
|
|
fadeout_delay -= 50;
|
|
|
|
|
2015-04-27 21:34:14 -04:00
|
|
|
//
|
|
|
|
// Now fade out the entire row, and call ourselves again
|
|
|
|
// so we can repeat with the next row.
|
|
|
|
//
|
|
|
|
jQuery(this).delay(fadeout_delay)
|
|
|
|
.fadeOut(fadeout_delay, function() {
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.display_row(rows, cb, fadein_duration, fadeout_delay);
|
2015-04-27 20:57:03 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2015-04-26 15:32:56 -04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// All done with displaying rows, fire our callback and get outta here.
|
|
|
|
//
|
|
|
|
cb();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of display_row()
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the actual results.
|
2015-04-26 17:53:43 -04:00
|
|
|
*
|
|
|
|
* @param cb object Optional callback to fire when done
|
2015-04-26 15:32:56 -04:00
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.display_results = function(cb) {
|
2015-04-26 15:32:56 -04:00
|
|
|
|
|
|
|
jQuery(".results_words_key").hide().clone().appendTo(".results");
|
|
|
|
jQuery(".results_words_value").hide().clone().appendTo(".results");
|
|
|
|
jQuery(".results").append("<br clear=\"all\" />");
|
2015-11-10 23:32:15 -05:00
|
|
|
|
2015-04-26 15:32:56 -04:00
|
|
|
jQuery(".results_phrase_key").hide().clone().appendTo(".results");
|
|
|
|
jQuery(".results_phrase_value").hide().clone().appendTo(".results");
|
2015-11-10 23:32:15 -05:00
|
|
|
jQuery(".results").append("<br clear=\"all\" />");
|
|
|
|
|
|
|
|
jQuery(".results_num_possible_key").hide().clone().appendTo(".results");
|
|
|
|
jQuery(".results_num_possible_value").hide().clone().appendTo(".results");
|
2015-04-26 15:32:56 -04:00
|
|
|
|
2015-04-26 17:53:43 -04:00
|
|
|
jQuery(".results .results_words_key").fadeIn(500, function() {
|
|
|
|
jQuery(".results .results_words_value").fadeIn(500, function() {
|
2015-11-10 23:32:15 -05:00
|
|
|
jQuery(".results .results_phrase_key").fadeIn(400, function() {
|
|
|
|
jQuery(".results .results_phrase_value").fadeIn(400, function() {
|
|
|
|
jQuery(".results .results_num_possible_key").fadeIn(300, function() {
|
|
|
|
jQuery(".results .results_num_possible_value").fadeIn(300, function() {
|
2015-04-26 17:53:43 -04:00
|
|
|
if (cb) {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
});
|
2015-04-26 15:32:56 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-11-10 23:32:15 -05:00
|
|
|
});
|
|
|
|
});
|
2015-04-26 15:32:56 -04:00
|
|
|
|
|
|
|
} // End of display_results()
|
|
|
|
|
|
|
|
|
2015-04-26 17:53:43 -04:00
|
|
|
/**
|
|
|
|
* Return the width of the browser window.
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.get_width = function() {
|
2015-04-26 17:53:43 -04:00
|
|
|
return(jQuery(window).width());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-26 17:20:56 -04:00
|
|
|
/**
|
|
|
|
* Return true if we are running on a mobile screen.
|
|
|
|
*/
|
2017-01-29 06:47:08 -05:00
|
|
|
Diceware.is_mobile = function() {
|
2015-04-26 17:20:56 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
if (Diceware.get_width() <= 480) {
|
2015-04-26 17:20:56 -04:00
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
} // End of is_mobile()
|
|
|
|
|
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
/**
|
|
|
|
* Our main function when being used via the UI. We call this to set up our jQuery hooks.
|
|
|
|
*
|
|
|
|
* I should probably refactor this more in the future--this function came about
|
|
|
|
* when I changed the code from self-contained to contained in an external object
|
|
|
|
* in preparation fro Qunit testing...
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
Diceware.go = function() {
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2015-04-26 02:08:58 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// Handler to mark the clicked number of dice button as active.
|
2015-04-26 02:08:58 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
jQuery(".dice_button").on("click", function(e) {
|
|
|
|
jQuery(".dice_button").removeClass("active");
|
|
|
|
jQuery(e.target).addClass("active");
|
|
|
|
});
|
2015-04-26 16:29:43 -04:00
|
|
|
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2015-04-26 02:08:58 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// Handler when the "Roll Dice" button is clicked. It gets the
|
|
|
|
// passphrase and updates the HTML with it.
|
2015-04-26 02:08:58 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
jQuery("#roll_dice").on("click", function(e) {
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
//
|
|
|
|
// Clear out more space when mobile
|
|
|
|
//
|
|
|
|
// In the future, I should just use a media query in CSS
|
|
|
|
//
|
|
|
|
var target_height = 300;
|
|
|
|
if (Diceware.is_mobile()) {
|
|
|
|
target_height = 400;
|
|
|
|
}
|
2015-04-26 02:08:58 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
jQuery(".results").animate({height: target_height}, 400);
|
2015-04-26 02:08:58 -04:00
|
|
|
|
2015-04-26 16:29:43 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// If we're running on an iPhone or similar, scroll down so that we can
|
|
|
|
// see the dice rolls and passphrase.
|
2015-04-26 16:29:43 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
if (Diceware.is_mobile()) {
|
|
|
|
var aTag = $("a[name='roll_dice_button']");
|
|
|
|
$("html,body").animate({scrollTop: aTag.offset().top}, "slow");
|
2015-04-26 02:08:58 -04:00
|
|
|
}
|
|
|
|
|
2015-04-26 16:29:43 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// Remove any old results
|
2015-04-26 16:29:43 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
jQuery(".results").empty();
|
2015-04-26 17:14:21 -04:00
|
|
|
|
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// Make our dice rolls
|
2015-04-26 17:14:21 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
var num_dice = jQuery(".dice_button.active").html();
|
|
|
|
var num_passwords = Number(Math.pow(6, (5 * num_dice)));
|
|
|
|
var passphrase = new Array();
|
2015-04-26 02:08:58 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
var rolls = new Array();
|
|
|
|
for (var i=0; i<num_dice; i++) {
|
2015-04-26 02:08:58 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
var roll = {};
|
2017-02-01 21:50:33 -05:00
|
|
|
//
|
|
|
|
// Roll 5 dice for 7,776 words.
|
|
|
|
//
|
|
|
|
roll.dice = Diceware.rollDice(5);
|
|
|
|
roll.word = Diceware.get_word(wordlist, roll.dice.value);
|
2017-01-29 06:47:08 -05:00
|
|
|
rolls.push(roll);
|
|
|
|
passphrase.push(roll.word);
|
2015-04-27 21:34:14 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
}
|
2015-04-26 17:53:43 -04:00
|
|
|
|
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// Populate our results by cloning the hidden base rows which
|
|
|
|
// represent each die.
|
2015-04-26 17:53:43 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
jQuery(".results_words_value").html(passphrase.join(" "));
|
|
|
|
jQuery(".results_phrase_value").html(passphrase.join(""));
|
|
|
|
jQuery(".results_num_possible_value").html(num_passwords.toLocaleString("en"));
|
2015-04-26 17:53:43 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
var rows = new Array();
|
|
|
|
for (key in rolls) {
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
var roll = rolls[key];
|
|
|
|
var row = jQuery("<div></div>");
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
//
|
|
|
|
// Clone and append specific dice to this row.
|
|
|
|
//
|
2017-02-01 21:50:33 -05:00
|
|
|
for (key2 in roll.dice.roll) {
|
|
|
|
var die = roll.dice.roll[key2];
|
2017-01-29 06:47:08 -05:00
|
|
|
var classname = ".source .dice" + die;
|
|
|
|
var tmp = jQuery(classname).clone().appendTo(row);
|
|
|
|
}
|
2015-04-27 20:48:57 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
//
|
|
|
|
// Now append the word
|
|
|
|
//
|
|
|
|
var dice_word = jQuery(".dice_word").clone();
|
|
|
|
dice_word.html("\"" + roll.word + "\"");
|
|
|
|
row.append(dice_word);
|
2015-04-26 00:01:29 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
//
|
|
|
|
// And clear to the next line
|
|
|
|
//
|
|
|
|
row.append("<br clear=\"all\" />");
|
|
|
|
|
|
|
|
rows.push(row);
|
2015-04-27 21:34:14 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now display those rows.
|
|
|
|
//
|
|
|
|
Diceware.display_row(rows, function() {
|
|
|
|
|
|
|
|
//
|
|
|
|
// And then display the results
|
|
|
|
//
|
|
|
|
Diceware.display_results(function() {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set the height of this back to auto so we don't have unused space.
|
|
|
|
// I'm amazed that we don't see a "flash" of the results div
|
|
|
|
// temporarily shrinking, but this seems to work as per what I saw
|
|
|
|
// at http://stackoverflow.com/questions/5003220/javascript-jquery-animate-to-auto-height
|
|
|
|
//
|
|
|
|
// Well then.
|
|
|
|
//
|
|
|
|
var height = jQuery(".results").height();
|
|
|
|
jQuery(".results").css("height", "auto");
|
|
|
|
var new_height = jQuery(".results").height();
|
|
|
|
jQuery(".results").height(height);
|
|
|
|
jQuery(".results").animate({height: new_height}, 400);
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
2015-04-27 20:48:57 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
});
|
2015-04-27 21:34:14 -04:00
|
|
|
|
2015-04-27 21:38:22 -04:00
|
|
|
|
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
// If we're not on a mobile, bring in the GitHub ribbon.
|
2015-04-27 21:38:22 -04:00
|
|
|
//
|
2017-01-29 06:47:08 -05:00
|
|
|
if (!Diceware.is_mobile()) {
|
|
|
|
jQuery("#github_ribbon").fadeIn(1000);
|
2015-04-27 21:38:22 -04:00
|
|
|
}
|
2015-04-25 23:02:05 -04:00
|
|
|
|
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
if (!Diceware.i_can_has_good_crypto()) {
|
|
|
|
jQuery(".source .bad_crypto").clone().hide().fadeIn(800).appendTo(".message");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Load our wordlist.
|
|
|
|
//
|
|
|
|
//jQuery.getScript("./wordlist.js").done(
|
|
|
|
jQuery.getScript("./wordlist/wordlist.js").done(
|
|
|
|
function(data) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// If "debug" is set in the GET data, roll the dice on page load.
|
|
|
|
// Speed up my development a bit. :-)
|
|
|
|
//
|
2017-01-29 13:43:25 -05:00
|
|
|
var debug = location.search.indexOf("debug");
|
|
|
|
|
|
|
|
if (debug != -1) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Grab our number in the GET data, sanitize it, and click the appropriate button.
|
|
|
|
//
|
|
|
|
var offset = location.search.search("=");
|
|
|
|
var num = location.search[offset + 1];
|
|
|
|
if (num < 2) {
|
|
|
|
num = 2;
|
|
|
|
} else if (num > 8) {
|
|
|
|
num = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
var id="#button-dice-" + num;
|
|
|
|
jQuery(id).click();
|
|
|
|
|
|
|
|
jQuery("#roll_dice").click();
|
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}).fail(
|
|
|
|
function(jqxhr, settings, exception) {
|
|
|
|
console.log("Error loading Javascript:", jqxhr.status, settings, exception);
|
|
|
|
|
|
|
|
});
|
2015-04-25 23:02:05 -04:00
|
|
|
|
2017-01-29 06:47:08 -05:00
|
|
|
} // End of go()
|
2015-04-25 23:02:05 -04:00
|
|
|
|
|
|
|
|