unnecessary control and responsive are fixed

This commit is contained in:
batuhanbas
2020-01-16 14:57:27 +03:00
parent ccae7c0572
commit 6902ec0929
10 changed files with 44 additions and 44 deletions

View File

@ -114,7 +114,7 @@
},
next() {
if (this.active++ > 2) this.active = 0;
if (this.active++ > 2);
}
}
}

View File

@ -73,7 +73,7 @@
},
next() {
if (this.active++ > 2) this.active = 0;
if (this.active++ > 2);
}
}
}

View File

@ -112,7 +112,7 @@
},
next() {
if (this.active++ > 2) this.active = 0;
if (this.active++ > 2);
}
}
}

View File

@ -40,7 +40,7 @@ const app = new Vue({
methods: {
next() {
if (this.active++ > 3) this.active = 0;
if (this.active++ > 3);
}
}
});

View File

@ -108,7 +108,7 @@ const app = new Vue({
},
next() {
if (this.active++ > 3) this.active = 0;
if (this.active++ > 3);
}
}
});

View File

@ -37,7 +37,7 @@ const app = new Vue({
methods: {
next() {
if (this.active++ > 3) this.active = 0;
if (this.active++ > 3);
}
}
});

View File

@ -80,7 +80,7 @@ const app = new Vue({
},
next() {
if (this.active++ > 3) this.active = 0;
if (this.active++ > 3);
}
}
});