mirror of
https://github.com/Febbweiss/febbweiss.github.io.git
synced 2026-03-04 14:15:46 +00:00
10 lines
286 B
JavaScript
10 lines
286 B
JavaScript
$(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");
|
|
});
|
|
}); |