├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── _config.yml ├── combined.js ├── index.html ├── index.js ├── package.json ├── screenshot.png ├── style.css ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | _site 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | exclude: ['node_modules', .git, kframe, canvas-text-editor] 2 | -------------------------------------------------------------------------------- /combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/combined.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/screenshot.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/style.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjroth/aframe-keyboard/HEAD/yarn.lock --------------------------------------------------------------------------------