-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Carousel didn't work #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
thanks, we will investigate that |
hey, got it working with a few minor fixes: this._carouselAnimation = setTimeout(function () {
this._items[oldVal].classList.remove(this.direction.outgoing, 'active');
this._items[val].classList.remove(this.direction.overlay);
this.animating = false;
// trigger an event
$root.$emit('slid::carousel', val)
}, TRANSITION_DURATION); to this._carouselAnimation = setTimeout( () => {
this._items[oldVal].classList.remove(this.direction.outgoing, 'active');
this._items[val].classList.remove(this.direction.overlay);
this.animating = false;
// trigger an event
this.$root.$emit('slid::carousel', val)
}, TRANSITION_DURATION); // start auto rotate slides
start() {
if (this.interval === 0 || typeof this.interval === 'undefined') return;
this._intervalId = setInterval(function () {
this.next()
}, this.interval);
} // start auto rotate slides
start() {
if (this.interval === 0 || typeof this.interval === 'undefined') return;
this._intervalId = setInterval( () => {
this.next()
}, this.interval);
} |
I will test it later. Thanks @RobinRadic |
In the docs, it's actually instead of |
mathlef0u
added a commit
to mathlef0u/bootstrap-vue
that referenced
this issue
Dec 10, 2016
@thanhpk @RafaelPlantard this issue has been solved, i close it ;). |
tmorehouse
added a commit
that referenced
this issue
May 8, 2017
Add b-button-group-dropdown to component list (#350)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I put appears at console, that this tag doesn't exists.
The text was updated successfully, but these errors were encountered: