Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,10 @@ $scope.sortableOptions = {
**Note:** `update` occurs before any model/scope changes but after the DOM position has been updated.
So `ui.item.scope` and the directive's `ng-model`, are equal to the scope before the drag start.

## Reporting Issues

The following pen's are provided as a good starting point to demonstrate issues, proposals and use case.
Feel free to edit any of them for your needs (don't forget to also update the libraries used to your version).

- [Simple Demo](http://codepen.io/thgreasi/pen/BlFLp)
- [Connected Lists](http://codepen.io/thgreasi/pen/apwsb)
12 changes: 6 additions & 6 deletions test/test.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ browsers = [ 'Chrome' ];
reporters = [ 'dots' ];

if (singleRun) {
reporters.push('coverage');
preprocessors = { '**/src/*.js': 'coverage' };
coverageReporter = {
type : 'html',
dir : 'coverage/'
};
reporters.push('coverage');
preprocessors = { '**/src/*.js': 'coverage' };
coverageReporter = {
type : 'html',
dir : 'coverage/'
};
}