This commit is contained in:
Thomas FORGIONE 2015-08-31 11:33:52 +02:00
parent e898c55742
commit dabe05c39b
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ block configjs
$('#next').show(); $('#next').show();
$('#next').click(function() { $('#next').click(function() {
window.location = '/prototype/game'; window.location = '/prototype/game';
$('#next').click(function() {}); $('#next').unbind('click');
}); });
}; };

View File

@ -33,7 +33,7 @@ Coin.onCoinGot = function(coin) {
$('#next').show(); $('#next').show();
$('#next').click(function() { $('#next').click(function() {
window.location = '/prototype/game'; window.location = '/prototype/game';
$('#next').click(function() {}); $('#next').unbind('click');
}); });
}, 60*1000); }, 60*1000);
} }

View File

@ -24,7 +24,7 @@ Coin.onCoinGot = function(val) {
$('#next').show(); $('#next').show();
$('#next').click(function() { $('#next').click(function() {
window.location = '/prototype/game'; window.location = '/prototype/game';
$('next').click(function() {}); $('#next').unbind('click');
}); });
}, 60*1000); }, 60*1000);
} }