├── .babelrc ├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── pr.yml ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── demo.css ├── index.html └── move-container.html ├── dist ├── moveTo.js └── moveTo.min.js ├── gulpfile.js ├── package.json ├── src └── moveTo.js ├── tests └── moveTo-spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead 3 | ie >= 10 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/demo/demo.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/move-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/demo/move-container.html -------------------------------------------------------------------------------- /dist/moveTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/dist/moveTo.js -------------------------------------------------------------------------------- /dist/moveTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/dist/moveTo.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/package.json -------------------------------------------------------------------------------- /src/moveTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/src/moveTo.js -------------------------------------------------------------------------------- /tests/moveTo-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/tests/moveTo-spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsnaydd/moveTo/HEAD/yarn.lock --------------------------------------------------------------------------------