gitextract_s2mraq4s/ ├── .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 ├── 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 │ ├── prettify/ │ │ ├── prettify.css │ │ ├── prettify.js │ │ └── run_prettify.js │ └── 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