Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 335f727

Browse files
committed
Merge pull request #42 from thgreasi/master
Fixing Travis & grunt tests. Fixed demo page for angular 1.2.
2 parents c43b6c6 + 1230f0e commit 335f727

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

demo/demo.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" href="components/jquery-ui/themes/smoothness/jquery-ui.css">
1212
<link rel="stylesheet" href="demo/demo.css">
1313
<script type="text/javascript" src="bower_components/jquery/jquery.js"></script>
14-
<script type="text/javascript" src="bower_components/jquery-ui/ui/jquery-ui.custom.js"></script>
14+
<script type="text/javascript" src="bower_components/jquery-ui/ui/jquery-ui.js"></script>
1515
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
1616
<script type="text/javascript" src="src/sortable.js"></script>
1717
<script type="text/javascript">
@@ -51,7 +51,7 @@ <h2>ui.sortable demo</h2>
5151
</ul>
5252

5353
<ul class="list logList">
54-
<li ng-repeat="entry in sortingLog" class="logItem">{{entry}}</li>
54+
<li ng-repeat="entry in sortingLog track by $index" class="logItem">{{entry}}</li>
5555
</ul>
5656
</div>
5757
</body>
File renamed without changes.

test/test.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ files = [
33
JASMINE,
44
JASMINE_ADAPTER,
55
'bower_components/jquery/jquery.js',
6-
'bower_components/jquery-ui/ui/jquery-ui.custom.js',
6+
'bower_components/jquery-ui/ui/jquery-ui.js',
77
'bower_components/angular/angular.js',
88
'bower_components/angular-mocks/angular-mocks.js',
99
'src/sortable.js',

0 commit comments

Comments
 (0)