Asynchronously loads jQuery and jQuery UI for use with Angular UI Sortable. jQuery and jQueryUI are only loaded once, when a ui-sortable
directive is encountered.
Please note that this module is intended to work with ui.sortable
and it probably won't work with any other script that depends on jQuery.
Include Angular, Angular UI Sortable and ui-sortable-loader.min.js or ui-sortable-loader.js in your page. You can use npm, bower, or a script-tag:
npm install angular-ui-sortable-loader
or
bower install angular-ui-sortable-loader
or
<script src="http://crisbeto.github.io/angular-ui-sortable-loader/ui-sortable-loader.min.js"></script>
Afterwards you need to specify your jQueryPath
and jQueryUiPath
in the uiSortableConfig
object, inside a run block in your app. Note that you need to have declared ui.sortable
as a dependency:
angular.module('someModule', ['ui.sortable']).run(['uiSortableConfig', function(uiSortableConfig){
uiSortableConfig.jQueryPath = 'https://code.jquery.com/jquery-1.11.3.min.js';
uiSortableConfig.jQueryUiPath = 'https://code.jquery.com/ui/1.11.4/jquery-ui.js';
}])
npm install
to install development dependenciesgrunt
to build minified demo in build/grunt deploy
to build minified demo and push it to gh-pages branch
- The awesome ui-sortable project.