Skip to content

Commit 75af496

Browse files
authored
update amd/cmd
Use sortablejs
1 parent 5ffd868 commit 75af496

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

angular-legacy-sortable.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
'use strict';
77

88
if (typeof define === 'function' && define.amd) {
9-
define(['angular', './Sortable'], factory);
9+
define(['angular', 'sortablejs'], factory);
1010
}
1111
else if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
1212
require('angular');
13-
factory(angular, require('./Sortable'));
13+
factory(angular, require('sortablejs'));
1414
module.exports = 'ng-sortable';
1515
}
1616
else if (window.angular && window.Sortable) {

0 commit comments

Comments
 (0)