unnecessary control and responsive are fixed
This commit is contained in:
@ -114,7 +114,7 @@
|
||||
},
|
||||
|
||||
next() {
|
||||
if (this.active++ > 2) this.active = 0;
|
||||
if (this.active++ > 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -73,7 +73,7 @@
|
||||
},
|
||||
|
||||
next() {
|
||||
if (this.active++ > 2) this.active = 0;
|
||||
if (this.active++ > 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -112,7 +112,7 @@
|
||||
},
|
||||
|
||||
next() {
|
||||
if (this.active++ > 2) this.active = 0;
|
||||
if (this.active++ > 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
2
resources/assets/js/views/wizard/company.js
vendored
2
resources/assets/js/views/wizard/company.js
vendored
@ -40,7 +40,7 @@ const app = new Vue({
|
||||
|
||||
methods: {
|
||||
next() {
|
||||
if (this.active++ > 3) this.active = 0;
|
||||
if (this.active++ > 3);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -108,7 +108,7 @@ const app = new Vue({
|
||||
},
|
||||
|
||||
next() {
|
||||
if (this.active++ > 3) this.active = 0;
|
||||
if (this.active++ > 3);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
2
resources/assets/js/views/wizard/finish.js
vendored
2
resources/assets/js/views/wizard/finish.js
vendored
@ -37,7 +37,7 @@ const app = new Vue({
|
||||
|
||||
methods: {
|
||||
next() {
|
||||
if (this.active++ > 3) this.active = 0;
|
||||
if (this.active++ > 3);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
2
resources/assets/js/views/wizard/taxes.js
vendored
2
resources/assets/js/views/wizard/taxes.js
vendored
@ -80,7 +80,7 @@ const app = new Vue({
|
||||
},
|
||||
|
||||
next() {
|
||||
if (this.active++ > 3) this.active = 0;
|
||||
if (this.active++ > 3);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user