Adam Fleming
7767536381
Correctly match multiple class names
...
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
10 years ago
RubaXa
72be2e91ae
#376 : * fixed 'evt.target'
10 years ago
RubaXa
08c31fc0bb
#379 : + 'delay' description
10 years ago
RubaXa
14864bc067
#335 : call save only if 'active'
10 years ago
RubaXa
a89b3b3edc
#347 : + moveVector
10 years ago
RubaXa
34328a81b5
#273 : + onMove event
10 years ago
RubaXa
b30ece99c5
v1.2.0: Events, Nested, Drop text, IE11, iframe and etc
10 years ago
RubaXa
c1f6cf50c4
#308 : * allow drop text
10 years ago
RubaXa
5c4e3dce2a
#318 , #328 : + Improved work with events transmitted through the options
10 years ago
RubaXa
40af728d53
#325 : * changed the order of the methods (code style)
10 years ago
RubaXa
723bc1e605
#325 : PR refactoring: - _enableDragStart & revert lost fixes
10 years ago
jboulouloubi
78c53ba5e1
Add delay between touchstart and dragstart
10 years ago
RubaXa
5fd36b19b1
* RSPACE
10 years ago
RubaXa
8b818ed280
#288 : + use 'ownerDocument' for correct working with/into iframe
10 years ago
RubaXa
7309734dbf
#290 : + clone simple 'option' and 'extend' method
10 years ago
Noah Chase
1f58b1b10b
use `page{d}Offset` instead of `scroll{d}`
...
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
10 years ago
Bogdan Mustiata
f802c84d05
Use precompiled RegExp.
10 years ago
Bogdan Mustiata
c7257ae198
Don't join class names when removing classes after additions.
10 years ago
RubaXa
c6a536aa3f
v1.1.1: #227 , #285
10 years ago
RubaXa
0b909aa59d
#285 : * fixed dragover handler
10 years ago
RubaXa
87e336a175
#277 : * fixed handle & filter
10 years ago
RubaXa
1482449b18
#285 : * fixed dragover handler
10 years ago
RubaXa
8b3e8f9497
#279 : * dataAttr -> dataIdAttr
10 years ago
RubaXa
7dc8be5755
#279 : + dataIdAttr
10 years ago
RubaXa
1c8839f08f
#277 : * fixed handle & filter
10 years ago
RubaXa
070a571508
v1.1.0: Support IE9, CDN, enhancement auto-scrolling, React-mixin and more.
10 years ago
RubaXa
563311f25e
#271 : + remove 'transform' (#issuecomment-73954644)
10 years ago
RubaXa
4c0f1afd32
#256 : - _onDrag
10 years ago
RubaXa
e97970b303
#256 : uber-autoscroll, support drag between lists
10 years ago
RubaXa
ab52c13850
#271 : * logic of auto-scrolling
10 years ago
RubaXa
21bf07a93f
#256 : * fixed auto-scrolling
10 years ago
RubaXa
15d6f07a01
#254 : + check 'effectAllowed' on 'dragover'
10 years ago
RubaXa
7bff4352d6
#250 : + additional check
10 years ago
RubaXa
c71b88f075
#251 : + 'mousemove' unbind
10 years ago
RubaXa
c9051c24e1
+ support IE9
10 years ago
RubaXa
f500b679f2
#238 : * disabled
10 years ago
Markus Ast
5325c8a842
fix index calculation to skip templates
10 years ago
RubaXa
8f2aa5eb68
+ create 'cloneEl' on dragStart
10 years ago
RubaXa
06aac74871
#210 : + 'dropBubble: false' & 'dragoverBubble: false' options
10 years ago
RubaXa
3f909d84df
#207 : * newIndex
10 years ago
RubaXa
a5532380f9
#205 : * support 'clone' for angular
10 years ago
raphj
b1daa70a2a
Make Sotable compatible xhtml
...
comparisons of node names (via the nodeName property) are done in upper case. However, nodeName is lower case in xhtml. Let's do everything in upper case.
10 years ago
RubaXa
0ffa616f10
#199 : + check 'dataTransfer' exists
10 years ago
RubaXa
9c618aa83b
#185 : finaly fix group & mobile
10 years ago
RubaXa
8ee92ddd32
#185 : fixed group & touch
10 years ago
RubaXa
9a9670ec4c
#184 : * 'start' event
10 years ago
Roel van Duijnhoven
a22f9c1fc7
Sort event does not always fire
...
In the dev branch the `sort` event is not always correctly called on the receiving list. This IS working in the latest released branch. The fix is trivial and included in this PR.
The case is illustrated in this JsBin: http://jsbin.com/muxojulevo/3/edit . It occurs whenever an item is picked up from a list and dropped in a nested container.
10 years ago
RubaXa
b2fe471012
#131 : v1.0, done
10 years ago
RubaXa
6656e45f30
#166 : fixed _onDragOver & group
10 years ago
RubaXa
8141f12db3
#173 : + save() method
10 years ago