├── .circleci └── config.yml ├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── custom-template.md │ └── feature-request.md ├── .gitignore ├── .jshintrc ├── .testcaferc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Sortable.js ├── Sortable.min.js ├── babel.config.js ├── bower.json ├── entry ├── entry-complete.js ├── entry-core.js └── entry-defaults.js ├── index.html ├── modular ├── sortable.complete.esm.js ├── sortable.core.esm.js └── sortable.esm.js ├── package.json ├── plugins ├── AutoScroll │ ├── AutoScroll.js │ ├── README.md │ └── index.js ├── MultiDrag │ ├── MultiDrag.js │ ├── README.md │ └── index.js ├── OnSpill │ ├── OnSpill.js │ ├── README.md │ └── index.js ├── README.md └── Swap │ ├── README.md │ ├── Swap.js │ └── index.js ├── scripts ├── banner.js ├── build.js ├── esm-build.js ├── minify.js ├── test-compat.js ├── test.js └── umd-build.js ├── src ├── Animation.js ├── BrowserInfo.js ├── EventDispatcher.js ├── PluginManager.js ├── Sortable.js └── utils.js ├── st ├── app.js ├── iframe │ ├── frame.html │ └── index.html ├── logo.png ├── og-image.png ├── prettify │ ├── prettify.css │ ├── prettify.js │ └── run_prettify.js ├── saucelabs.svg └── theme.css └── tests ├── Sortable.compat.test.js ├── Sortable.test.js ├── dual-list.html ├── empty-list.html ├── filter.html ├── handles.html ├── nested.html ├── single-list.html └── style.css /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.github/ISSUE_TEMPLATE/custom-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | mock.png 3 | .*.sw* 4 | .build* 5 | jquery.fn.* 6 | .idea/ 7 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.jshintrc -------------------------------------------------------------------------------- /.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/.testcaferc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/README.md -------------------------------------------------------------------------------- /Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/Sortable.js -------------------------------------------------------------------------------- /Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/Sortable.min.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/babel.config.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/bower.json -------------------------------------------------------------------------------- /entry/entry-complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/entry/entry-complete.js -------------------------------------------------------------------------------- /entry/entry-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/entry/entry-core.js -------------------------------------------------------------------------------- /entry/entry-defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/entry/entry-defaults.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/index.html -------------------------------------------------------------------------------- /modular/sortable.complete.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/modular/sortable.complete.esm.js -------------------------------------------------------------------------------- /modular/sortable.core.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/modular/sortable.core.esm.js -------------------------------------------------------------------------------- /modular/sortable.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/modular/sortable.esm.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/package.json -------------------------------------------------------------------------------- /plugins/AutoScroll/AutoScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/AutoScroll/AutoScroll.js -------------------------------------------------------------------------------- /plugins/AutoScroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/AutoScroll/README.md -------------------------------------------------------------------------------- /plugins/AutoScroll/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AutoScroll.js'; 2 | -------------------------------------------------------------------------------- /plugins/MultiDrag/MultiDrag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/MultiDrag/MultiDrag.js -------------------------------------------------------------------------------- /plugins/MultiDrag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/MultiDrag/README.md -------------------------------------------------------------------------------- /plugins/MultiDrag/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MultiDrag.js'; 2 | -------------------------------------------------------------------------------- /plugins/OnSpill/OnSpill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/OnSpill/OnSpill.js -------------------------------------------------------------------------------- /plugins/OnSpill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/OnSpill/README.md -------------------------------------------------------------------------------- /plugins/OnSpill/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/OnSpill/index.js -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/Swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/Swap/README.md -------------------------------------------------------------------------------- /plugins/Swap/Swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/plugins/Swap/Swap.js -------------------------------------------------------------------------------- /plugins/Swap/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Swap.js'; 2 | -------------------------------------------------------------------------------- /scripts/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/banner.js -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/esm-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/esm-build.js -------------------------------------------------------------------------------- /scripts/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/minify.js -------------------------------------------------------------------------------- /scripts/test-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/test-compat.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/test.js -------------------------------------------------------------------------------- /scripts/umd-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/scripts/umd-build.js -------------------------------------------------------------------------------- /src/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/Animation.js -------------------------------------------------------------------------------- /src/BrowserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/BrowserInfo.js -------------------------------------------------------------------------------- /src/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/EventDispatcher.js -------------------------------------------------------------------------------- /src/PluginManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/PluginManager.js -------------------------------------------------------------------------------- /src/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/Sortable.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/src/utils.js -------------------------------------------------------------------------------- /st/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/app.js -------------------------------------------------------------------------------- /st/iframe/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/iframe/frame.html -------------------------------------------------------------------------------- /st/iframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/iframe/index.html -------------------------------------------------------------------------------- /st/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/logo.png -------------------------------------------------------------------------------- /st/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/og-image.png -------------------------------------------------------------------------------- /st/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/prettify/prettify.css -------------------------------------------------------------------------------- /st/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/prettify/prettify.js -------------------------------------------------------------------------------- /st/prettify/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/prettify/run_prettify.js -------------------------------------------------------------------------------- /st/saucelabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/saucelabs.svg -------------------------------------------------------------------------------- /st/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/st/theme.css -------------------------------------------------------------------------------- /tests/Sortable.compat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/Sortable.compat.test.js -------------------------------------------------------------------------------- /tests/Sortable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/Sortable.test.js -------------------------------------------------------------------------------- /tests/dual-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/dual-list.html -------------------------------------------------------------------------------- /tests/empty-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/empty-list.html -------------------------------------------------------------------------------- /tests/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/filter.html -------------------------------------------------------------------------------- /tests/handles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/handles.html -------------------------------------------------------------------------------- /tests/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/nested.html -------------------------------------------------------------------------------- /tests/single-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/single-list.html -------------------------------------------------------------------------------- /tests/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SortableJS/Sortable/HEAD/tests/style.css --------------------------------------------------------------------------------