├── .babelrc ├── .gitignore ├── README.md ├── doc └── handlock.md ├── example ├── locker-check.html ├── locker-update.html ├── locker.html └── recorder.html ├── lib ├── app.js ├── locker.js └── recorder.js ├── package.json ├── script ├── cdn-uploader.js └── deploy.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/README.md -------------------------------------------------------------------------------- /doc/handlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/doc/handlock.md -------------------------------------------------------------------------------- /example/locker-check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/example/locker-check.html -------------------------------------------------------------------------------- /example/locker-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/example/locker-update.html -------------------------------------------------------------------------------- /example/locker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/example/locker.html -------------------------------------------------------------------------------- /example/recorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/example/recorder.html -------------------------------------------------------------------------------- /lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/lib/app.js -------------------------------------------------------------------------------- /lib/locker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/lib/locker.js -------------------------------------------------------------------------------- /lib/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/lib/recorder.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/package.json -------------------------------------------------------------------------------- /script/cdn-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/script/cdn-uploader.js -------------------------------------------------------------------------------- /script/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/script/deploy.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akira-cn/handlock/HEAD/webpack.config.js --------------------------------------------------------------------------------