Browse Source

#132: opts -> groupOpts

pull/135/head
RubaXa 10 years ago
parent
commit
559e466a96
  1. 5
      index.html

5
index.html

@ -339,14 +339,15 @@ var editableList = new Sortable(editable, {
name: 'advanced',
pull: false,
put: true
}].forEach(function (opts, i) {
}].forEach(function (groupOpts, i) {
new Sortable(document.getElementById('advanced-' + (i + 1)), {
sort: (i != 1),
group: opts,
group: groupOpts,
animation: 150
});
});
angular.module('todoApp', ['ng-sortable'])
.controller('TodoController', ['$scope', function ($scope) {
$scope.todos = [

Loading…
Cancel
Save