I may have corrected the bug
This commit is contained in:
11
js/l3d/apps/prototype/interactive/main.js
vendored
11
js/l3d/apps/prototype/interactive/main.js
vendored
@@ -32,13 +32,20 @@ Coin.onCoinGot = function(coin) {
|
||||
setTimeout(function() {
|
||||
$('#next').show();
|
||||
$('#next').click(function() {
|
||||
window.location = '/prototype/game';
|
||||
$('#next').unbind('click');
|
||||
window.location = '/prototype/next';
|
||||
});
|
||||
}, 60*1000);
|
||||
}
|
||||
};
|
||||
|
||||
Coin.onLastCoin = function() {
|
||||
$('#next').show();
|
||||
$('#next').click(function() {
|
||||
window.location = '/prototype/next';
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function main() {
|
||||
|
||||
// Main container that holds everything
|
||||
|
||||
Reference in New Issue
Block a user