Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bevacqua/dragula
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: codextde/dragula
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 19 commits
  • 8 files changed
  • 3 contributors

Commits on Dec 12, 2016

  1. Add scrolling support vertically and horizontally

    TODO: When hovering the dragged item at scrollEdge, the scrolling should
    automatically begin to scroll.
    
    Drag and scrolling code is inspired by jQuery UI's sortable and
    draggable widgets.
    nguyenj committed Dec 12, 2016
    Copy the full SHA
    4ac8b49 View commit details
  2. Add auto scrolling support

    nguyenj committed Dec 12, 2016
    Copy the full SHA
    030323a View commit details
  3. Copy the full SHA
    a4438f4 View commit details
  4. Copy the full SHA
    624e638 View commit details

Commits on Dec 13, 2016

  1. Copy the full SHA
    ec1ac5e View commit details

Commits on Dec 23, 2016

  1. Copy the full SHA
    3660289 View commit details

Commits on Jan 19, 2017

  1. Copy the full SHA
    13875c0 View commit details
  2. Copy the full SHA
    f6cb5cd View commit details

Commits on Mar 8, 2017

  1. Deal with touch events

    Thank you [ChrisVanDijk](https://github.com/ChrisVanDijk).
    nguyenj committed Mar 8, 2017
    Copy the full SHA
    ef3e640 View commit details
  2. Copy the full SHA
    f752e0e View commit details

Commits on Mar 9, 2017

  1. Revert "Deal with touch events"

    This reverts commit ef3e640.
    nguyenj committed Mar 9, 2017
    Copy the full SHA
    1187cd4 View commit details
  2. Compile for dist

    nguyenj committed Mar 9, 2017
    Copy the full SHA
    30473db View commit details

Commits on Mar 10, 2017

  1. Deal with touch events, round 2

    Thank you [ChrisVanDijk](https://github.com/ChrisVanDijk).
    nguyenj committed Mar 10, 2017
    Copy the full SHA
    22f4e03 View commit details

Commits on Apr 4, 2017

  1. Fix scrolling issues for IE

    nguyenj committed Apr 4, 2017
    Copy the full SHA
    ae28525 View commit details

Commits on Apr 5, 2017

  1. Add notes

    nguyenj committed Apr 5, 2017
    Copy the full SHA
    1e319d5 View commit details

Commits on Apr 7, 2017

  1. Add scrollEdge as an options

    nguyenj committed Apr 7, 2017
    Copy the full SHA
    f6a7d55 View commit details

Commits on Apr 24, 2017

  1. Add cancelAnimationFrame polyfill (#1)

    Also simplify animationFrame polyfills as browser support is excellent and older browsers are buggy (some have no support for cancelling) so it's better to fallback.
    adam-h authored and nguyenj committed Apr 24, 2017

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    dd20e3c View commit details

Commits on May 23, 2018

  1. Merge remote-tracking branch 'new/fix/scroll'

    Daniel Ehrhardt committed May 23, 2018
    Copy the full SHA
    c920a42 View commit details

Commits on May 24, 2018

  1. Updated Dist Folder

    Daniel Ehrhardt committed May 24, 2018
    Copy the full SHA
    50fd66c View commit details
Showing with 7,431 additions and 10 deletions.
  1. +98 −4 dist/dragula.js
  2. +1 −1 dist/dragula.min.js
  3. +96 −3 dragula.js
  4. +22 −0 example/example.css
  5. +2 −0 example/example.js
  6. +4 −2 example/example.min.js
  7. +92 −0 index.html
  8. +7,116 −0 package-lock.json
Loading