Initial commit

This commit is contained in:
ECAILLE Fabrice (externe)
2017-05-03 16:46:01 +02:00
commit 2e64cb961e
117 changed files with 10765 additions and 0 deletions

11
docs/extra/js/pyramid.js Normal file
View File

@@ -0,0 +1,11 @@
$(document).ready(function() {
$('#startBtn').on('click', function(event) {
for( var i = 0; i < 52; i++ ) {
Deck.cards[i] = i +1;
}
$('img[id^="card"]').remove();
$("#drawn").removeClass();
$("#stock").addClass("card").addClass("background");
Pyramid.init();
});
});