Skip to content

Commit

Permalink
fix(carousel): boolean typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Aug 11, 2017
1 parent 8299c3e commit 6a95410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/carousel.vue
Expand Up @@ -195,7 +195,7 @@
// Start auto rotate slides
start() {
// Don't start if no intetrval, or if we are already running
if (!Bolean(this.interval) || this.isCycling) {
if (!Boolean(this.interval) || this.isCycling) {
return;
}
this.slides.forEach(slide => {
Expand Down

0 comments on commit 6a95410

Please sign in to comment.