├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── jimtclhacks.patch ├── js ├── postJsJimtcl.js ├── postJsTcl.js └── preJs.js ├── opt └── dom.c └── tclhacks.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/README.md -------------------------------------------------------------------------------- /jimtclhacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/jimtclhacks.patch -------------------------------------------------------------------------------- /js/postJsJimtcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/js/postJsJimtcl.js -------------------------------------------------------------------------------- /js/postJsTcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/js/postJsTcl.js -------------------------------------------------------------------------------- /js/preJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/js/preJs.js -------------------------------------------------------------------------------- /opt/dom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/opt/dom.c -------------------------------------------------------------------------------- /tclhacks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidanhs/emtcl/HEAD/tclhacks.patch --------------------------------------------------------------------------------