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

Commit b0062bd

Browse files
author
Łukasz Florczak
authored
Merge branch 'master' into readme-edits
2 parents 98b4f10 + 0c95ec0 commit b0062bd

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
---
1111

12-
**Please note that the plugin is currently in a relatively early development phase. I will try to keep up with all issues and maintain stability with each version, but unfortunately at this stage there may still be some bugs.**
12+
🎉 **After about a year from the last version, I'm happy and excited to inform, that new `v1.0` version is coming soon! Some features I planed in version `v0.4` were for me impossible to realise and I got stuck in it completely. Version [`2.6 of Vue.js`](https://github.com/vuejs/vue/releases/tag/v2.6.0) opened new slots opportunities and now I can return to developing the plugin. I've learned a lot for that time so I also decided to refactor all code – it should be now cleaner and better optimised. Stay tuned!**
1313

1414
---
1515

issue_label_bot.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
label-alias:
2+
bug: 'bug'
3+
feature_request: 'feature'
4+
question: 'question'

src/Agile.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,9 @@
346346
347347
disableScroll () {
348348
document.ontouchmove = function (e) {
349-
e.preventDefault()
349+
if (!e.touches) {
350+
e.preventDefault()
351+
}
350352
}
351353
},
352354

0 commit comments

Comments
 (0)