├── .dockerignore ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── src ├── creator.js ├── index.js ├── static │ ├── bootstrap.min.css │ └── index.html └── template │ ├── SCORM_API_wrapper.js │ ├── h5p-adaptor.js │ └── index.html └── static ├── imprint.html ├── license.html └── privacy.html /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .openode -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/renovate.json -------------------------------------------------------------------------------- /src/creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/creator.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/index.js -------------------------------------------------------------------------------- /src/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/static/bootstrap.min.css -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/template/SCORM_API_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/template/SCORM_API_wrapper.js -------------------------------------------------------------------------------- /src/template/h5p-adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/template/h5p-adaptor.js -------------------------------------------------------------------------------- /src/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/scorm-h5p-wrapper/HEAD/src/template/index.html -------------------------------------------------------------------------------- /static/imprint.html: -------------------------------------------------------------------------------- 1 |

2 | -- your imprint goes here -- 3 |

4 | -------------------------------------------------------------------------------- /static/license.html: -------------------------------------------------------------------------------- 1 | -- your license goes here -- -------------------------------------------------------------------------------- /static/privacy.html: -------------------------------------------------------------------------------- 1 | -- your privacy policy goes here -- --------------------------------------------------------------------------------