├── .gitignore ├── Gruntfile.js ├── LICENSE ├── bower.json ├── dist ├── jquery.vimeo.api.js └── jquery.vimeo.api.min.js ├── example.html ├── package.json ├── readme.md ├── src └── jquery.vimeo.api.js └── vimeoapi.jquery.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/LICENSE -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery.vimeo.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/dist/jquery.vimeo.api.js -------------------------------------------------------------------------------- /dist/jquery.vimeo.api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/dist/jquery.vimeo.api.min.js -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/example.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/readme.md -------------------------------------------------------------------------------- /src/jquery.vimeo.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/src/jquery.vimeo.api.js -------------------------------------------------------------------------------- /vimeoapi.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrue/Vimeo-jQuery-API/HEAD/vimeoapi.jquery.json --------------------------------------------------------------------------------