├── .babelrc ├── .gitignore ├── .npmignore ├── .nvmrc ├── LICENSE ├── README.md ├── bower.json ├── dist ├── SVGPanZoom.js ├── SVGPanZoom.js.map └── SVGPanZoom.min.js ├── docs ├── SVGPanZoom.js ├── SVGPanZoom.js.map ├── _config.yml ├── index.html └── style.css ├── package.json ├── rollup.config.js └── src ├── Animation.js └── SVGPanZoom.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | es 3 | lib 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.11.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/bower.json -------------------------------------------------------------------------------- /dist/SVGPanZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/dist/SVGPanZoom.js -------------------------------------------------------------------------------- /dist/SVGPanZoom.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/dist/SVGPanZoom.js.map -------------------------------------------------------------------------------- /dist/SVGPanZoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/dist/SVGPanZoom.min.js -------------------------------------------------------------------------------- /docs/SVGPanZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/docs/SVGPanZoom.js -------------------------------------------------------------------------------- /docs/SVGPanZoom.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/docs/SVGPanZoom.js.map -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/docs/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/src/Animation.js -------------------------------------------------------------------------------- /src/SVGPanZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avcs06/SVGPanZoom/HEAD/src/SVGPanZoom.js --------------------------------------------------------------------------------