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 0543a48 commit 978b296Copy full SHA for 978b296
README.md
@@ -58,15 +58,15 @@ Example showing how use the handle option
58
angular.module('exampleApp', ['ng-sortable'])
59
.component('dragAndDropExample', {
60
template: `
61
- <ul ng-sortable=$ctrl.sortableConf>
+ <ul ng-sortable=$ctrl.sortableConf>
62
<li ng-repeat="item in ['burgers', 'chips', 'hotdog']" draggable="false">
63
<span class="grab-handle">Drag Header</span>
64
<div>{$ item $}</div>
65
</li>
66
</ul>`,
67
controller: class ExampleController {
68
- constructor() {
69
- this.sortableConf = {
+ constructor() {
+ this.sortableConf = {
70
animation: 350,
71
chosenClass: 'sortable-chosen',
72
handle: '.grab-handle',
0 commit comments