├── .gitignore ├── .ruby-version ├── Gemfile ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── jekyll.yml ├── lib └── simditor.js ├── package.json ├── server.js ├── site ├── CNAME ├── _data │ ├── button.yml │ ├── configs.yml │ ├── events.yml │ └── methods.yml ├── _includes │ ├── doc-sidebar.html │ ├── footer.html │ └── header.html ├── _layouts │ ├── default.html │ ├── doc.html │ └── tour.html ├── assets │ ├── _coffee │ │ ├── page-demo.coffee │ │ ├── page-download.coffee │ │ └── page-form.coffee │ ├── _sass │ │ ├── app.scss │ │ ├── function.scss │ │ ├── highlight.scss │ │ ├── mobile.scss │ │ └── reset.scss │ ├── images │ │ ├── fork.png │ │ ├── image.png │ │ ├── logo.png │ │ ├── logo@2x.png │ │ ├── title.png │ │ └── title@2x.png │ ├── scripts │ │ ├── dompurify.js │ │ ├── hotkeys.js │ │ ├── jquery.min.js │ │ ├── mobilecheck.js │ │ ├── module.js │ │ ├── page-demo.js │ │ ├── page-doc.js │ │ ├── page-download.js │ │ ├── page-form.js │ │ ├── simditor.js │ │ └── uploader.js │ └── styles │ │ ├── app.css │ │ ├── mobile.css │ │ └── simditor.css ├── demo.html ├── docs │ ├── doc-config.md │ ├── doc-dev-env.md │ ├── doc-event.md │ ├── doc-method.md │ └── doc-usage.md ├── extension.html ├── favicon.ico └── index.html ├── spec ├── buttons │ ├── alignment-spec.js │ ├── bold-spec.js │ ├── code-spec.js │ ├── font-scale-spec.js │ ├── table-spec.js │ └── title-spec.js ├── core-spec.js ├── formatter-spec.js ├── indentation-spec.js ├── index.html ├── src │ ├── buttons │ │ ├── alignment-spec.coffee │ │ ├── bold-spec.coffee │ │ ├── code-spec.coffee │ │ ├── font-scale-spec.coffee │ │ ├── table-spec.coffee │ │ └── title-spec.coffee │ ├── core-spec.coffee │ ├── formatter-spec.coffee │ ├── indentation-spec.coffee │ └── util.coffee └── util.js ├── src ├── buttons │ ├── alignment.coffee │ ├── blockquote.coffee │ ├── bold.coffee │ ├── button.coffee │ ├── code.coffee │ ├── color.coffee │ ├── font-scale.coffee │ ├── hr.coffee │ ├── image.coffee │ ├── indent.coffee │ ├── italic.coffee │ ├── link.coffee │ ├── list.coffee │ ├── outdent.coffee │ ├── popover.coffee │ ├── strikethrough.coffee │ ├── table.coffee │ ├── title.coffee │ └── underline.coffee ├── clipboard.coffee ├── core.coffee ├── formatter.coffee ├── i18n.coffee ├── indentation.coffee ├── inputManager.coffee ├── keystroke.coffee ├── selection.coffee ├── toolbar.coffee ├── undoManager.coffee └── util.coffee ├── styles ├── editor.scss ├── fonticon.scss ├── simditor.css └── simditor.scss ├── tea.yaml └── umd.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/Gemfile -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/README.md -------------------------------------------------------------------------------- /jekyll.yml: -------------------------------------------------------------------------------- 1 | encoding: utf-8 2 | name: Simditor 3 | markdown: redcarpet 4 | source: site 5 | -------------------------------------------------------------------------------- /lib/simditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/lib/simditor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/server.js -------------------------------------------------------------------------------- /site/CNAME: -------------------------------------------------------------------------------- 1 | simditor.tower.im 2 | -------------------------------------------------------------------------------- /site/_data/button.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_data/button.yml -------------------------------------------------------------------------------- /site/_data/configs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_data/configs.yml -------------------------------------------------------------------------------- /site/_data/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_data/events.yml -------------------------------------------------------------------------------- /site/_data/methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_data/methods.yml -------------------------------------------------------------------------------- /site/_includes/doc-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_includes/doc-sidebar.html -------------------------------------------------------------------------------- /site/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_includes/footer.html -------------------------------------------------------------------------------- /site/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_includes/header.html -------------------------------------------------------------------------------- /site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_layouts/default.html -------------------------------------------------------------------------------- /site/_layouts/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_layouts/doc.html -------------------------------------------------------------------------------- /site/_layouts/tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/_layouts/tour.html -------------------------------------------------------------------------------- /site/assets/_coffee/page-demo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_coffee/page-demo.coffee -------------------------------------------------------------------------------- /site/assets/_coffee/page-download.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_coffee/page-download.coffee -------------------------------------------------------------------------------- /site/assets/_coffee/page-form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_coffee/page-form.coffee -------------------------------------------------------------------------------- /site/assets/_sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_sass/app.scss -------------------------------------------------------------------------------- /site/assets/_sass/function.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_sass/function.scss -------------------------------------------------------------------------------- /site/assets/_sass/highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_sass/highlight.scss -------------------------------------------------------------------------------- /site/assets/_sass/mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_sass/mobile.scss -------------------------------------------------------------------------------- /site/assets/_sass/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/_sass/reset.scss -------------------------------------------------------------------------------- /site/assets/images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/fork.png -------------------------------------------------------------------------------- /site/assets/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/image.png -------------------------------------------------------------------------------- /site/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/logo.png -------------------------------------------------------------------------------- /site/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/logo@2x.png -------------------------------------------------------------------------------- /site/assets/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/title.png -------------------------------------------------------------------------------- /site/assets/images/title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/images/title@2x.png -------------------------------------------------------------------------------- /site/assets/scripts/dompurify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/dompurify.js -------------------------------------------------------------------------------- /site/assets/scripts/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/hotkeys.js -------------------------------------------------------------------------------- /site/assets/scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/jquery.min.js -------------------------------------------------------------------------------- /site/assets/scripts/mobilecheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/mobilecheck.js -------------------------------------------------------------------------------- /site/assets/scripts/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/module.js -------------------------------------------------------------------------------- /site/assets/scripts/page-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/page-demo.js -------------------------------------------------------------------------------- /site/assets/scripts/page-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/page-doc.js -------------------------------------------------------------------------------- /site/assets/scripts/page-download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/page-download.js -------------------------------------------------------------------------------- /site/assets/scripts/page-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/page-form.js -------------------------------------------------------------------------------- /site/assets/scripts/simditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/simditor.js -------------------------------------------------------------------------------- /site/assets/scripts/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/scripts/uploader.js -------------------------------------------------------------------------------- /site/assets/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/styles/app.css -------------------------------------------------------------------------------- /site/assets/styles/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/styles/mobile.css -------------------------------------------------------------------------------- /site/assets/styles/simditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/assets/styles/simditor.css -------------------------------------------------------------------------------- /site/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/demo.html -------------------------------------------------------------------------------- /site/docs/doc-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/docs/doc-config.md -------------------------------------------------------------------------------- /site/docs/doc-dev-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/docs/doc-dev-env.md -------------------------------------------------------------------------------- /site/docs/doc-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/docs/doc-event.md -------------------------------------------------------------------------------- /site/docs/doc-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/docs/doc-method.md -------------------------------------------------------------------------------- /site/docs/doc-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/docs/doc-usage.md -------------------------------------------------------------------------------- /site/extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/extension.html -------------------------------------------------------------------------------- /site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/favicon.ico -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/site/index.html -------------------------------------------------------------------------------- /spec/buttons/alignment-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/alignment-spec.js -------------------------------------------------------------------------------- /spec/buttons/bold-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/bold-spec.js -------------------------------------------------------------------------------- /spec/buttons/code-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/code-spec.js -------------------------------------------------------------------------------- /spec/buttons/font-scale-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/font-scale-spec.js -------------------------------------------------------------------------------- /spec/buttons/table-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/table-spec.js -------------------------------------------------------------------------------- /spec/buttons/title-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/buttons/title-spec.js -------------------------------------------------------------------------------- /spec/core-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/core-spec.js -------------------------------------------------------------------------------- /spec/formatter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/formatter-spec.js -------------------------------------------------------------------------------- /spec/indentation-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/indentation-spec.js -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/src/buttons/alignment-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/alignment-spec.coffee -------------------------------------------------------------------------------- /spec/src/buttons/bold-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/bold-spec.coffee -------------------------------------------------------------------------------- /spec/src/buttons/code-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/code-spec.coffee -------------------------------------------------------------------------------- /spec/src/buttons/font-scale-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/font-scale-spec.coffee -------------------------------------------------------------------------------- /spec/src/buttons/table-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/table-spec.coffee -------------------------------------------------------------------------------- /spec/src/buttons/title-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/buttons/title-spec.coffee -------------------------------------------------------------------------------- /spec/src/core-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/core-spec.coffee -------------------------------------------------------------------------------- /spec/src/formatter-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/formatter-spec.coffee -------------------------------------------------------------------------------- /spec/src/indentation-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/indentation-spec.coffee -------------------------------------------------------------------------------- /spec/src/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/src/util.coffee -------------------------------------------------------------------------------- /spec/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/spec/util.js -------------------------------------------------------------------------------- /src/buttons/alignment.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/alignment.coffee -------------------------------------------------------------------------------- /src/buttons/blockquote.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/blockquote.coffee -------------------------------------------------------------------------------- /src/buttons/bold.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/bold.coffee -------------------------------------------------------------------------------- /src/buttons/button.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/button.coffee -------------------------------------------------------------------------------- /src/buttons/code.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/code.coffee -------------------------------------------------------------------------------- /src/buttons/color.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/color.coffee -------------------------------------------------------------------------------- /src/buttons/font-scale.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/font-scale.coffee -------------------------------------------------------------------------------- /src/buttons/hr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/hr.coffee -------------------------------------------------------------------------------- /src/buttons/image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/image.coffee -------------------------------------------------------------------------------- /src/buttons/indent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/indent.coffee -------------------------------------------------------------------------------- /src/buttons/italic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/italic.coffee -------------------------------------------------------------------------------- /src/buttons/link.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/link.coffee -------------------------------------------------------------------------------- /src/buttons/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/list.coffee -------------------------------------------------------------------------------- /src/buttons/outdent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/outdent.coffee -------------------------------------------------------------------------------- /src/buttons/popover.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/popover.coffee -------------------------------------------------------------------------------- /src/buttons/strikethrough.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/strikethrough.coffee -------------------------------------------------------------------------------- /src/buttons/table.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/table.coffee -------------------------------------------------------------------------------- /src/buttons/title.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/title.coffee -------------------------------------------------------------------------------- /src/buttons/underline.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/buttons/underline.coffee -------------------------------------------------------------------------------- /src/clipboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/clipboard.coffee -------------------------------------------------------------------------------- /src/core.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/core.coffee -------------------------------------------------------------------------------- /src/formatter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/formatter.coffee -------------------------------------------------------------------------------- /src/i18n.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/i18n.coffee -------------------------------------------------------------------------------- /src/indentation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/indentation.coffee -------------------------------------------------------------------------------- /src/inputManager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/inputManager.coffee -------------------------------------------------------------------------------- /src/keystroke.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/keystroke.coffee -------------------------------------------------------------------------------- /src/selection.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/selection.coffee -------------------------------------------------------------------------------- /src/toolbar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/toolbar.coffee -------------------------------------------------------------------------------- /src/undoManager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/undoManager.coffee -------------------------------------------------------------------------------- /src/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/src/util.coffee -------------------------------------------------------------------------------- /styles/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/styles/editor.scss -------------------------------------------------------------------------------- /styles/fonticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/styles/fonticon.scss -------------------------------------------------------------------------------- /styles/simditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/styles/simditor.css -------------------------------------------------------------------------------- /styles/simditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/styles/simditor.scss -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/tea.yaml -------------------------------------------------------------------------------- /umd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycolorway/simditor/HEAD/umd.hbs --------------------------------------------------------------------------------