1. 10 6月, 2017 1 次提交
  2. 30 5月, 2017 1 次提交
  3. 25 5月, 2017 2 次提交
  4. 23 5月, 2017 1 次提交
  5. 09 4月, 2017 1 次提交
  6. 24 2月, 2017 1 次提交
  7. 20 2月, 2017 1 次提交
  8. 19 2月, 2017 2 次提交
  9. 17 2月, 2017 1 次提交
  10. 11 2月, 2017 1 次提交
  11. 15 11月, 2016 1 次提交
  12. 16 8月, 2016 1 次提交
  13. 27 7月, 2016 1 次提交
    • A
      Fix problem with supporting css pointer-event in IE11 #920 · 3003909a
      Artem Lipatov 提交于
      IE-11 supports css pointer-events incorrect:
      if your draggable elem contains pseudoelements,
      Sortable.js will solve that your draggable elem
      are dropping to itself.
      So Sortable.js will place your draggable elem to end of list.
      
      This PR let to Sortable.js solve that IE11 doesnt support pointer-events
      3003909a
  14. 06 7月, 2016 2 次提交
  15. 23 4月, 2016 1 次提交
  16. 04 2月, 2016 1 次提交
  17. 20 11月, 2015 1 次提交
  18. 15 11月, 2015 1 次提交
  19. 13 11月, 2015 1 次提交
  20. 03 11月, 2015 1 次提交
  21. 27 10月, 2015 1 次提交
    • T
      Added onChoose event. · 0d17cf09
      TaliLavi 提交于
      This event will fire when an element is chosen, and is particularly
      useful for providing the user with a visual, auditory or tactile indication,
      in case a delay was enabled.
      0d17cf09
  22. 21 10月, 2015 1 次提交
  23. 15 10月, 2015 1 次提交
  24. 23 9月, 2015 1 次提交
  25. 16 9月, 2015 1 次提交
  26. 10 9月, 2015 1 次提交
  27. 21 8月, 2015 1 次提交
    • P
      don't nest parent in child Sortable · e51dc539
      Paolo Priotto 提交于
      when nesting Sortable's, we're not interested in this error:
      "HierarchyRequestError: Failed to execute 'appendChild' on 'Node': The new child element contains the parent."
      e51dc539
  28. 17 8月, 2015 1 次提交
    • P
      check for existence of dataTransfer · f7af4b15
      Paolo Priotto 提交于
      As done in the other place where `dataTransfer` is used.
      This is to support fake html5 drag and drop events, where `dataTransfer` is not accessible. Use case: Selenium testing with ePages-de/chromedriver-html5-dragdrop
      f7af4b15
  29. 01 8月, 2015 1 次提交
  30. 31 7月, 2015 1 次提交
  31. 28 7月, 2015 1 次提交
  32. 18 7月, 2015 1 次提交
    • R
      v1.2.1 · e912d00e
      RubaXa 提交于
      e912d00e
  33. 15 7月, 2015 1 次提交
  34. 13 7月, 2015 1 次提交
  35. 21 6月, 2015 1 次提交
  36. 15 4月, 2015 1 次提交
  37. 11 3月, 2015 1 次提交
    • N
      use `page{d}Offset` instead of `scroll{d}` · 1f58b1b1
      Noah Chase 提交于
      All modern browsers seem to support `window.pageXOffset` and `window.pageYOffset`, which are aliases for `window.scrollX` and `window.scrollY`.
      
      IE doesn't seem to have `window.scrollX` and `window.scrollY`.
      
      fixes #302
      1f58b1b1