├── README.md ├── customImporters ├── canvas2d.js ├── selector.js ├── selectorAll.js └── style.js ├── defaultImporters ├── all.js ├── arraybuffer.js ├── blob.js ├── document.js ├── image.js ├── imageBitmap.js ├── imageData.js ├── json.js └── string.js ├── html-modules ├── dialog1.css ├── dialog1.html ├── dialog1.js └── dialog2 │ ├── dialog2.css │ ├── dialog2.html │ └── dialog2.js ├── htmlModule.js ├── importAs.js ├── index.html ├── main.js ├── resources ├── data.json ├── doc.html ├── lenna.png ├── style.css └── text.txt └── util.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/README.md -------------------------------------------------------------------------------- /customImporters/canvas2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/customImporters/canvas2d.js -------------------------------------------------------------------------------- /customImporters/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/customImporters/selector.js -------------------------------------------------------------------------------- /customImporters/selectorAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/customImporters/selectorAll.js -------------------------------------------------------------------------------- /customImporters/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/customImporters/style.js -------------------------------------------------------------------------------- /defaultImporters/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/all.js -------------------------------------------------------------------------------- /defaultImporters/arraybuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/arraybuffer.js -------------------------------------------------------------------------------- /defaultImporters/blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/blob.js -------------------------------------------------------------------------------- /defaultImporters/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/document.js -------------------------------------------------------------------------------- /defaultImporters/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/image.js -------------------------------------------------------------------------------- /defaultImporters/imageBitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/imageBitmap.js -------------------------------------------------------------------------------- /defaultImporters/imageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/imageData.js -------------------------------------------------------------------------------- /defaultImporters/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/json.js -------------------------------------------------------------------------------- /defaultImporters/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/defaultImporters/string.js -------------------------------------------------------------------------------- /html-modules/dialog1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog1.css -------------------------------------------------------------------------------- /html-modules/dialog1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog1.html -------------------------------------------------------------------------------- /html-modules/dialog1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog1.js -------------------------------------------------------------------------------- /html-modules/dialog2/dialog2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog2/dialog2.css -------------------------------------------------------------------------------- /html-modules/dialog2/dialog2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog2/dialog2.html -------------------------------------------------------------------------------- /html-modules/dialog2/dialog2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/html-modules/dialog2/dialog2.js -------------------------------------------------------------------------------- /htmlModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/htmlModule.js -------------------------------------------------------------------------------- /importAs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/importAs.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/main.js -------------------------------------------------------------------------------- /resources/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/resources/data.json -------------------------------------------------------------------------------- /resources/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/resources/doc.html -------------------------------------------------------------------------------- /resources/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/resources/lenna.png -------------------------------------------------------------------------------- /resources/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #FF8; 3 | } -------------------------------------------------------------------------------- /resources/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/resources/text.txt -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshleyScirra/import-as-and-html-modules/HEAD/util.js --------------------------------------------------------------------------------