Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 1a7e194

Browse files
committed
Merge pull request #158 from thgreasi/master
Improvement(README) added notes about dependencies & canceling
2 parents e7f7097 + 72be8f3 commit 1a7e194

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ This directive allows you to sort an array with drag & drop.
66

77
- JQuery
88
- JQueryUI
9+
- AngularJS
10+
11+
**Notes:**
12+
> JQuery must be included before AngularJS.
13+
> JQueryUI dependecies include core, widget, mouse & sortable. Creating a [custom build](http://jqueryui.com/download/#!version=1.10&components=1110000010000000000000000000000000) will [greatly reduce](https://github.com/angular-ui/ui-sortable/issues/154#issuecomment-40279430) the required file size.
914
1015
## Usage
1116

@@ -73,16 +78,18 @@ $scope.sortableOptions = {
7378
};
7479
```
7580

76-
**Note:** `update` occurs before any model/scope changes but after the DOM position has been updated.
81+
**Notes:**
82+
* `update` is the appropriate place to cancel a sorting, since it occurs before any model/scope changes but after the DOM position has been updated.
7783
So `ui.item.scope` and the directive's `ng-model`, are equal to the scope before the drag start.
84+
* To [cancel a sorting between connected lists](https://github.com/angular-ui/ui-sortable/issues/107#issuecomment-33633638), `cancel` should be called inside the `update` callback of the originating list.
7885

7986
## Examples
8087

8188
- [Simple Demo](http://codepen.io/thgreasi/pen/jlkhr)
82-
- [Connected Lists](http://codepen.io/thgreasi/pen/uFile)
83-
- [Filtering](http://codepen.io/thgreasi/pen/mzGbq) [details #113](https://github.com/angular-ui/ui-sortable/issues/113)
84-
- [Ordering](http://plnkr.co/edit/XPUzJjdvwE0QWQ6py6mQ?p=preview) [details #70](https://github.com/angular-ui/ui-sortable/issues/70)
85-
- [Cloning](http://codepen.io/thgreasi/pen/qmvhG) [details #139](https://github.com/angular-ui/ui-sortable/issues/139)
89+
- [Connected Lists](http://codepen.io/thgreasi/pen/uFile) & [Connected Lists Canceling](http://codepen.io/thgreasi/pen/IdvFc)
90+
- [Filtering](http://codepen.io/thgreasi/pen/mzGbq) ([details](https://github.com/angular-ui/ui-sortable/issues/113))
91+
- [Ordering](http://plnkr.co/edit/XPUzJjdvwE0QWQ6py6mQ?p=preview) ([details](https://github.com/angular-ui/ui-sortable/issues/70))
92+
- [Cloning](http://codepen.io/thgreasi/pen/qmvhG) ([details](https://github.com/angular-ui/ui-sortable/issues/139))
8693

8794
## Reporting Issues
8895

0 commit comments

Comments
 (0)