├── .gitignore ├── LICENSE ├── gulpfile.js ├── package.json ├── readme.md └── src ├── css └── style.css ├── image └── battery-status-api.jpg ├── index.html └── scripts └── script.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .babelrc 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/LICENSE -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/readme.md -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/image/battery-status-api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/src/image/battery-status-api.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/src/index.html -------------------------------------------------------------------------------- /src/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjdesigner/vibration-api/HEAD/src/scripts/script.js --------------------------------------------------------------------------------