Refactoring: manage generated static site

This commit is contained in:
ECAILLE Fabrice (externe)
2017-05-04 10:21:47 +02:00
parent 2e64cb961e
commit 3331ead68a
68 changed files with 6445 additions and 0 deletions

10
extra/js/yahtzee.js Normal file
View File

@@ -0,0 +1,10 @@
$(document).ready(function() {
$('#startBtn').on('click', function(event) {
Yahtzee.clear(true);
Yahtzee.scoreUp = Yahtzee.scoreDown = 0;
$('span[id$="Score"]').html(' ');
$("#scorePanel").hide();
$("#launch").html(0);
$("#launchBtn").removeClass("disabled");
});
});