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

Commit 65ca54f

Browse files
author
Łukasz Florczak
authored
Merge branch 'master' into develop
2 parents 95afd29 + e605209 commit 65ca54f

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.4",
3+
"version": "0.2.6",
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
@@ -13,6 +13,7 @@
1313
<li v-for="n in slidesCount" class="agile__dot"
1414
:class="{'agile__dot--current': n - 1 === currentSlide}"
1515
@mouseover="handleMouseOver('dot')" @mouseout="handleMouseOut('dot')">
16+
1617
<button @click="setSlide(n - 1)">{{n}}</button>
1718
</li>
1819
</ul>
@@ -548,7 +549,6 @@
548549
<style lang="scss" type="text/scss">
549550
.agile {
550551
position: relative;
551-
user-select: none;
552552
553553
&, * {
554554
&:focus,

0 commit comments

Comments
 (0)