Skip to content

Latest commit

 

History

History
109 lines (69 loc) · 4.4 KB

CHANGELOG.md

File metadata and controls

109 lines (69 loc) · 4.4 KB

v0.0.8 (2013-10-22)

Bug Fixes

  • Fix desktopScroller.js not using array annotation

v0.0.7 (2013-10-15)

Bug Fixes

  • desktop:
    • Only scroll if vertical delta (22bf70e0)
    • unbind keydown when scroll elm is destroyed (51500ce9)

Features

  • $scroller: allow desktop scrolling (8249eaf2)
  • dragger:
    • add option to stopPropagation, default false (1ca592a6)
  • transformer:
    • allow collection of elements to be transformed (41373c57)
    • add clear() method to clear styles (f4785491)
    • allow user to only change x or y (eeb702a7)

v0.0.6 (2013-10-06)

Bug Fixes

  • dragger:
    • Let drag events propagate

Features

  • dragger:
    • listen to mouse and touch, options to disable either (87766439)

    • Make addListener specify a dragDirection (1506d03e)

      • This is a breaking change. To migrate your code, do the following:

      Change this:

      var myDragger = $dragger(element, $dragger.DIRECTION_HORIZONTAL);
      myDragger.addListener(myListener);

      Into this:

      var myDragger = $dragger(element);
      myDragger.addListener($dragger.DIRECTION_HORIZONTAL, element);

v0.0.5 (2013-09-30)

Bug Fixes

Features

  • dragger:
    • Give 2d x and y data instead of 1d (559ea186)
    • If you use $dragger directly, the event data you receive and the usage has changed, see the documentation.

v0.0.4 (2013-08-13)

Bug Fixes

  • dragger: stop propagation, so scroll on popups works (2006b0bc)

v0.0.3 (2013-08-09)

Bug Fixes

  • desktop: unbind keydown when scroll elm is destroyed (51500ce9)
  • scroller:
    • remove scroll event (c8b170e2)
    • count container top and bottom offset (f8b71798)
  • transformer: Try both cases of transformProp (firefox, ie10) (761f7c22)

Features

  • $scroller: allow desktop scrolling (8249eaf2)
  • dragger: add horizontal option (ddd75112)
  • scroller: support mousewheel, keys (a365debd)

v0.0.2 (2013-07-30)

Bug Fixes

  • scroller: count container top and bottom offset (f8b71798)
  • transformer: Try both cases of transformProp (firefox, ie10 fix) (761f7c22)

Features

  • $scroller: allow desktop scrolling (8249eaf2)
  • scroller: support mousewheel, keys (a365debd)