We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7deba6 commit 06dd442Copy full SHA for 06dd442
1 file changed
js/morescripts.js
@@ -88,13 +88,13 @@ $(document).ready(function(){
88
var curval = parseInt($('#counter').text());
89
var curval1 = parseInt($('#counter1').text().replace(' ',''));
90
var curval2 = parseInt($('#counter2').text());
91
- if(curval <= 16){
+ if(curval <= 1){
92
$('#counter').text(curval+1);
93
}
94
- if(curval1 <= 21){
+ if(curval1 <= 29){
95
$('#counter1').text(curval1+1);
96
97
- if(curval2 <= 8){
+ if(curval2 <= 9){
98
$('#counter2').text(curval2+1);
99
100
}, 2);
0 commit comments