We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0ca5a commit 1dca2b0Copy full SHA for 1dca2b0
examples/horizontal/src/index.ts
@@ -39,12 +39,12 @@ function userSelectDriver(sort$): void {
39
}
40
41
function main(sources: Sources): Sinks {
42
- const sinks = makeSortable(Child, {
+ const sinks: any = makeSortable(Child, {
43
itemSelector: 'ul > li'
44
})(sources);
45
46
return {
47
- drag: sinks.drag,
+ drag: sinks.dragging,
48
DOM: sinks.DOM.map(dom =>
49
div([h3('Horizontal too!'), p('this is running with RxJS'), dom])
50
)
0 commit comments