Following the advice of @Pavlo to use https://github.com/angular-ui/ui-sortable,
I have this repeating list that I want to make sortable.
<div ui-sortable ng-model="regions" class="list-group region-list">
<a data-ng-repeat="region in regions" data-ng-href="#!/regions/{{region._id}}" class="list-group-item">
<h4 class="list-group-item-heading" data-ng-bind="region.name"></h4>
</a>
</div>
Following the advice of @nrodic and added 'ui.sortable'
to config.js.
var applicationModuleVendorDependencies = ['ngResource', 'ngCookies', 'ngAnimate', 'ngTouch', 'ngSanitize', 'ui.router', 'ui.bootstrap', 'ui.utils', 'ui.sortable'];
However, when I add that I get the following message:
"ui.sortable: jQuery should be included before AngularJS!"
Any further help is appreciated.
Thank you.