├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── config.js ├── docs ├── index.html ├── main.css ├── screenshot.png ├── src │ ├── api.js.html │ ├── index.js.html │ └── models.js.html └── static │ └── js │ ├── editors │ └── textarea.js.html │ └── main.js.html ├── litterate.config.js ├── package.json ├── src ├── api.js ├── index.js └── models.js ├── starter_fixtures ├── blank-torus.js ├── blank.frame ├── button-effects.html ├── canvas.js ├── filters-shadows.html ├── flexbox.html ├── helloworld.html ├── helloworld.js ├── interactive-input.html ├── interactive-input.js ├── nametag-torus.js ├── see-javascript.html ├── simple-blog.html ├── todo-torus.js └── welcome.html ├── static ├── 404.html ├── 500.html ├── assets │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── css │ ├── index.css │ └── main.css ├── editor.html ├── index.html └── js │ ├── editors │ └── textarea.js │ └── main.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/config.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/src/api.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/src/api.js.html -------------------------------------------------------------------------------- /docs/src/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/src/index.js.html -------------------------------------------------------------------------------- /docs/src/models.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/src/models.js.html -------------------------------------------------------------------------------- /docs/static/js/editors/textarea.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/static/js/editors/textarea.js.html -------------------------------------------------------------------------------- /docs/static/js/main.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/docs/static/js/main.js.html -------------------------------------------------------------------------------- /litterate.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/litterate.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/package.json -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/src/api.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/src/index.js -------------------------------------------------------------------------------- /src/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/src/models.js -------------------------------------------------------------------------------- /starter_fixtures/blank-torus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/blank-torus.js -------------------------------------------------------------------------------- /starter_fixtures/blank.frame: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter_fixtures/button-effects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/button-effects.html -------------------------------------------------------------------------------- /starter_fixtures/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/canvas.js -------------------------------------------------------------------------------- /starter_fixtures/filters-shadows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/filters-shadows.html -------------------------------------------------------------------------------- /starter_fixtures/flexbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/flexbox.html -------------------------------------------------------------------------------- /starter_fixtures/helloworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/helloworld.html -------------------------------------------------------------------------------- /starter_fixtures/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/helloworld.js -------------------------------------------------------------------------------- /starter_fixtures/interactive-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/interactive-input.html -------------------------------------------------------------------------------- /starter_fixtures/interactive-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/interactive-input.js -------------------------------------------------------------------------------- /starter_fixtures/nametag-torus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/nametag-torus.js -------------------------------------------------------------------------------- /starter_fixtures/see-javascript.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /starter_fixtures/simple-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/simple-blog.html -------------------------------------------------------------------------------- /starter_fixtures/todo-torus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/todo-torus.js -------------------------------------------------------------------------------- /starter_fixtures/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/starter_fixtures/welcome.html -------------------------------------------------------------------------------- /static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/404.html -------------------------------------------------------------------------------- /static/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/500.html -------------------------------------------------------------------------------- /static/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/assets/favicon-16x16.png -------------------------------------------------------------------------------- /static/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/assets/favicon-32x32.png -------------------------------------------------------------------------------- /static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/assets/favicon.ico -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/editor.html -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/index.html -------------------------------------------------------------------------------- /static/js/editors/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/js/editors/textarea.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/static/js/main.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesephist/codeframe/HEAD/yarn.lock --------------------------------------------------------------------------------