Try
This commit is contained in:
parent
e898c55742
commit
dabe05c39b
|
@ -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');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue