Skip to content

Releases: ustbhuangyi/better-scroll

v1.6.2

21 Dec 12:32
Compare
Choose a tag to compare

BugFix

Fix navigate problem of <a> tag.

v1.6.1

20 Dec 15:41
Compare
Choose a tag to compare

BugFix

Fix scroll event fire when it's in transition and it can't fire the scroll event at the last animation frame .
Fix snap loop if the initial children length is zero.

v1.6.0

17 Dec 12:45
Compare
Choose a tag to compare

Improvements

  • optimize the core snap loop,currently support the x axis loop
  • fix issue #392, add more detail props to the mock click event

v1.5.6

12 Dec 07:38
Compare
Choose a tag to compare

Improvements

  • Fix issue #383, optimize pulldown refresh and fix the bug of the frequently click in the process of the resetPosition.

BugFix

  • Fix standard transitionend event name.

v1.5.5

05 Dec 10:22
Compare
Choose a tag to compare

Improvements

  • Since set snap loop option to true, remove clone node when better-scroll destroyed.

BugFix

  • Fix issue #370, allow input trigger click event when it's clicked.

v1.5.4

04 Dec 03:15
Compare
Choose a tag to compare

Improvements

  • optimize MutationObserver, do not refresh if the scroller is outside of the boundaries.

v1.5.3

28 Nov 16:54
Compare
Choose a tag to compare

Bug Fixes

  • fix #361, support wechat tools.

Improvements

  • optimize MutationObserver, watch the attributes because some animation will cause the attributes change and it will also effect the scroller height or width, need refresh.
  • add observeDOM option, see wiki.

v1.5.0 Wow

27 Nov 17:19
Compare
Choose a tag to compare

Bug Fixes

  • fix some edge case by Android, merge pr #347

Improvements

  • auto refresh via mutationObserver, user don't need to call refresh method after DOM changes.
  • optimize pull down refresh,allow momentum scroll before pull down refresh end.

v1.4.2

16 Nov 16:35
Compare
Choose a tag to compare

Bug Fixes

  • fix #318, calculate selectedIndex using Math.round instead of | 0 .

Improvements

  • fix issue #312 allow bounce when pulling down before last pull down refresh finish.
  • merge pr #331 optimize the config of wheel option, thanks to @linxiaowu66
  • support es modules, refer to rollup pkg.module wiki

v1.4.0

02 Nov 17:58
Compare
Choose a tag to compare

Bug Fixes

  • fix event register by the once method can't be removed manually if it's not triggered, thanks to @theniceangel & @CommanderXL

Improvements

  • support TypeScript type definition, thanks to @taoqf & @linxiaowu66.
  • fix issue #295, prevent click while the scroll is in transition.
  • scroller add transition property transform while scrolling in case of some potential bugs, thanks to @wind-stone