1. 23 9月, 2015 1 次提交
  2. 16 9月, 2015 4 次提交
  3. 10 9月, 2015 1 次提交
  4. 09 9月, 2015 1 次提交
  5. 07 9月, 2015 1 次提交
  6. 03 9月, 2015 2 次提交
  7. 01 9月, 2015 2 次提交
  8. 25 8月, 2015 1 次提交
  9. 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
  10. 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
  11. 31 7月, 2015 2 次提交
  12. 28 7月, 2015 2 次提交
  13. 21 7月, 2015 1 次提交
  14. 18 7月, 2015 4 次提交
  15. 15 7月, 2015 1 次提交
  16. 13 7月, 2015 1 次提交
  17. 27 6月, 2015 4 次提交
  18. 25 6月, 2015 3 次提交
  19. 23 6月, 2015 2 次提交
    • C
      missed some stuff · 2f06d97b
      ChiefORZ 提交于
      wasn't merging all necessary stuff. now it should be fully functional
      2f06d97b
    • C
      react handleMove/onMove event · 5d6747a9
      ChiefORZ 提交于
      modified the private _onMove prototype, so it calls events on it's
      source Element like it's sibling function _dispatchEvent
      added the handleMove, which listens to the onMove events to the react
      mixin
      5d6747a9
  20. 22 6月, 2015 1 次提交
    • C
      fix click event for mobile devices and old browser · 429dc043
      ChiefORZ 提交于
      added forcePolyfill option.
      forcePolyfill is made to make cross-browser testing more easy.
      forcePolyfill provides a reliable, consistent cross-browser Solution for
      Sortable.
      forcePolyfill gives us the possibility to change the way "dragged items"
      lok like.
      429dc043
  21. 21 6月, 2015 1 次提交
  22. 18 6月, 2015 1 次提交
  23. 16 6月, 2015 1 次提交
    • A
      Correctly match multiple class names · 77675363
      Adam Fleming 提交于
      Assume that el.className === "foo bar"
      Assume that your selector is "DIV.foo.bar"
      
      (' ' + el.className + ' ').match(re) will only have one match - " foo " - because the "\\s" trailing character on "foo" prevents " bar " from being matched
      
      EZ fix is just to make sure the trailing whitespace is not consumed by the regex
      77675363
  24. 11 6月, 2015 1 次提交