Skip to content

Commit ecde9d3

Browse files
committed
Removed last commas from some opt json's.
1 parent b3fb1ba commit ecde9d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sortable.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ describe('uiSortable', function() {
351351
element = $compile('<ul ui-sortable="opts" ng-model="items"><li ng-repeat="item in items" id="s-{{$index}}" class="sortable-item">{{ item }}</li></ul>')($rootScope);
352352
$rootScope.$apply(function() {
353353
$rootScope.opts = {
354-
helper: 'clone',
354+
helper: 'clone'
355355
};
356356
$rootScope.items = ['One', 'Two', 'Three'];
357357
});
@@ -380,7 +380,7 @@ describe('uiSortable', function() {
380380
element = $compile('<ul ui-sortable="opts" ng-model="items"><li ng-repeat="item in items" id="s-{{$index}}" class="sortable-item">{{ item }}</li></ul>')($rootScope);
381381
$rootScope.$apply(function() {
382382
$rootScope.opts = {
383-
helper: 'clone',
383+
helper: 'clone'
384384
};
385385
$rootScope.items = ['One', 'Two', 'Three'];
386386
});

0 commit comments

Comments
 (0)