You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can pass a Config obj to `ng-sortable` and it will pass this onto the created sortable object. The available options can be found [here](https://github.com/RubaXa/Sortable#options)
32
32
33
33
```js
34
-
angular.module('exampleApp', [])
34
+
angular.module('exampleApp', ['ng-sortable'])
35
35
.component('dragAndDropExample', {
36
36
template:`<ul ng-sortable=$ctrl.sortableConf>
37
37
<li ng-repeat="item in ['burgers', 'chips', 'hotdog']">
0 commit comments