Lebedev Konstantin
d7b0c87a03
+ master
9 years ago
Lebedev Konstantin
cb060d8547
Merge pull request #890 from KorsaR-ZN/bugfix-1
...
Added support attribute "data-ng-repeat"
9 years ago
Stanislav Kiryukhin
995519ac09
code improvement
9 years ago
Stanislav Kiryukhin
e0f9a114c5
added support for "data-ng-repeat"
9 years ago
Lebedev Konstantin
21cdb8ce4a
Merge pull request #839 from TimvdLippe/fix-es5-compilation
...
Fix compilation on ES5 for Polymer
9 years ago
Tim van der Lippe
238216d8c9
Fix feedback
9 years ago
Lebedev Konstantin
6c93d48e68
[MOVED] https://github.com/SortableJS/
9 years ago
Lebedev Konstantin
fefff20f1f
#772 : newIndex
9 years ago
Lebedev Konstantin
3fde492e01
#772 : newIndex
9 years ago
Lebedev Konstantin
d347d2d6ce
willChange -> will-change
9 years ago
Lebedev Konstantin
cb1e453fe4
#857 : + will-change on drag
9 years ago
Lebedev Konstantin
eee775c8c0
[MOVED] knockout-sortable to https://github.com/SortableJS/knockout-sortablejs
9 years ago
Lebedev Konstantin
05b7d2daee
Merge branch 'master' of github.com:RubaXa/Sortable
9 years ago
Lebedev Konstantin
52bde83397
* cs
9 years ago
Lebedev Konstantin
cfae80664f
Merge branch 'dev' of github.com:RubaXa/Sortable into dev
9 years ago
Lebedev Konstantin
5a1ffc2646
Merge branch 'master' into dev
9 years ago
Lebedev Konstantin
d497e64ca9
#864 : + check Sortable.active in nulling method
9 years ago
Lebedev Konstantin
d2e3a6fa45
Merge pull request #884 from vasiakorobkin/custom_autoscrolling_function
...
Custom autoscrolling function
9 years ago
Boris Sergeev
b11772918e
Update README.md: info about custom autoscrolling function
9 years ago
Boris Sergeev
f11bf04aaa
Add option for custom autoscrolling function
9 years ago
Lebedev Konstantin
369ae8dc54
Merge pull request #831 from ne0-cz/jquery-binding-fix
...
jquery.binding: fixed non-working widget method
9 years ago
Lebedev Konstantin
b7cc23841d
Merge pull request #881 from kalaspuffar/manually_handle_updates
...
Manually handle updates
9 years ago
Daniel Persson
35a8a14115
Added manuallyHandleUpdateEvents and documented usage.
9 years ago
Daniel Persson
babcc09e22
Small change to update the data instead of the polymer collection.
9 years ago
Daniel Persson
4d65727212
Small change to update the data instead of the polymer collection.
9 years ago
Lebedev Konstantin
48f3a11f42
Merge pull request #834 from joual/dev
...
Add the original mouse event as parameter in onMove()
9 years ago
Lebedev Konstantin
3b1b116a78
Merge pull request #883 from circlingthesun/angular-debugInfo-dev
...
Enable the angular directive to work when debugInfo is off
9 years ago
Rickert Mulder
49d8535399
Enable the angular directive to work when debugInfo is off
9 years ago
Lebedev Konstantin
c8c3f48b95
Merge pull request #843 from falkolab/patch-1
...
typo fix
9 years ago
Lebedev Konstantin
3957f60ae8
Merge pull request #854 from harrymt/patch-1
...
Missing comma on fallbackOnBody and fallbackClass
9 years ago
Lebedev Konstantin
d7680eb688
Merge pull request #862 from KadoBOT/patch-1
...
Fixed missing comma in React ES2015
9 years ago
Lebedev Konstantin
cedd070ade
Merge pull request #871 from christianp/ko-deferred-tasks-fix
...
knockout: run deferred tasks early
9 years ago
Lebedev Konstantin
395658766f
Merge pull request #872 from KuroToro/dev
...
Include setData option on angular watchers
9 years ago
Lebedev Konstantin
1923228c78
Merge pull request #880 from syuilo/master
...
Fix incorrect example code
9 years ago
古谷向日葵
cabde8c65a
Fix incorrect example code
9 years ago
Mykel Ray Perez
8f11edd3c5
Include setData option on angular watchers
...
setData is not triggered on isolated scopes http://jsbin.com/yimununobo/1/edit?js,console,output
9 years ago
Christian Lawson-Perfect
aaf292c538
knockout: run deferred tasks early
...
If `ko.options.deferUpdates = true`, then updates to the UI don't happen immediately when you modify the viewModel.
For the sortable binding, this means that after removing a moved item, it doesn't recreate it at the new position.
Calling `ko.tasks.runEarly` before re-inserting the item into the observableArray makes KO register the removal.
This is the fix proposed by @adriaanmeuris in RubaXa/Sortable#712
9 years ago
Borreda
bf1c2ce3b0
- get Sortable running with IE and touch devices, aka pointerevent support
...
- don't forget to turn off standard pointerevents for scrolling:
-> touch-action: none;
-> -ms-touch-action: none; //older IE versions
- drawback/known issue : option delay isn't supported in conjunction with ms touch
9 years ago
alexk111
9b70f32921
Fix Destroy workflow
9 years ago
Ricardo Ambrogi
019e687ccb
Fixed missing comma in React ES2015
9 years ago
Harry Mumford-Turner
abec27faa1
Adding missing comma on fallbackClass
...
Adding a comma on the following line will make the options valid javascript.
`fallbackClass: "sortable-fallback"` to `fallbackClass: "sortable-fallback",`
9 years ago
Harry Mumford-Turner
c3faf18108
Missing comma on ```fallbackOnBody```
9 years ago
Andrey Tkachenko
5d67a8894e
typo fix
9 years ago
Tim van der Lippe
643d9afe85
Fix issue with dragEl undefined when moving with a Polymer element
9 years ago
Tim van der Lippe
ee86bc2bbc
Fix compilation on ES5 for Polymer
9 years ago
Joel Marcotte
6264428b97
Add the original mouse event as parameter in onMove
9 years ago
Luděk Uiberlay
16f1cb03e0
jquery.binding: fixed non-working widget method
9 years ago
Lebedev Konstantin
acef394c9a
Merge pull request #809 from piotrwitek/patch-1
...
Update README.md: Add Support React ES2015 / TypeScript syntax example
9 years ago
Piotr Witek
610527f029
Update README.md
...
Add Support React ES2015 / TypeScript syntax
As mixins are not supported in ES2015 / TypeScript syntax here is example of ES2015 ref based implementation.
Using refs is the preferred (by facebook) "escape hatch" to underlaying DOM nodes: [React: The ref Callback Attribute](https://facebook.github.io/react/docs/more-about-refs.html#the-ref-callback-attribute )
9 years ago
Lebedev Konstantin
f8a5ddb354
Merge pull request #801 from AndreasGalster/master
...
[Polymer component]Added method to re-initialize sortable
9 years ago