Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit 17c3e04

Browse files
author
Łukasz Florczak
committed
Fixed methods names
1 parent df32625 commit 17c3e04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-agile",
3-
"version": "0.3.0-beta.3",
3+
"version": "0.3.0-beta.4",
44
"description": "Carousel component for Vue.js",
55
"author": "Łukasz Florczak <[email protected]>",
66
"license": "MIT",

src/Agile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ul ref="dots" v-if="settings.dots && !settings.unagile" class="agile__dots">
1212
<li v-for="n in slidesCount" class="agile__dot"
1313
:class="{'agile__dot--current': n - 1 === currentSlide}"
14-
@mouseover="mouseOver('dot')" @mouseout="mouseOut('dot')">
14+
@mouseover="handleMouseOver('dot')" @mouseout="handleMouseOut('dot')">
1515
<button @click="setSlide(n - 1)">{{n}}</button>
1616
</li>
1717
</ul>

0 commit comments

Comments
 (0)