Try
This commit is contained in:
parent
a4fedaf600
commit
8ac5391ce3
|
@ -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').unbind('click');
|
$('#next').prop('disabled', true);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ Coin.onCoinGot = function(coin) {
|
||||||
$('#next').show();
|
$('#next').show();
|
||||||
$('#next').click(function() {
|
$('#next').click(function() {
|
||||||
window.location = '/prototype/next';
|
window.location = '/prototype/next';
|
||||||
|
$('#next').prop('disabled', true);
|
||||||
});
|
});
|
||||||
}, 60*1000);
|
}, 60*1000);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue