├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .replit ├── Froala_ThirdPartyLicense.txt ├── License.txt ├── README.md ├── bower.json ├── composer.json ├── css ├── froala_editor.css ├── froala_editor.min.css ├── froala_editor.pkgd.css ├── froala_editor.pkgd.min.css ├── froala_style.css ├── froala_style.min.css ├── plugins.pkgd.css ├── plugins.pkgd.min.css ├── plugins │ ├── char_counter.css │ ├── char_counter.min.css │ ├── code_view.css │ ├── code_view.min.css │ ├── colors.css │ ├── colors.min.css │ ├── draggable.css │ ├── draggable.min.css │ ├── emoticons.css │ ├── emoticons.min.css │ ├── file.css │ ├── file.min.css │ ├── files_manager.css │ ├── files_manager.min.css │ ├── filestack.css │ ├── filestack.min.css │ ├── find_and_replace.css │ ├── find_and_replace.min.css │ ├── fullscreen.css │ ├── fullscreen.min.css │ ├── help.css │ ├── help.min.css │ ├── image.css │ ├── image.min.css │ ├── image_manager.css │ ├── image_manager.min.css │ ├── line_breaker.css │ ├── line_breaker.min.css │ ├── link_to_anchor.css │ ├── link_to_anchor.min.css │ ├── markdown.css │ ├── markdown.min.css │ ├── page_break.css │ ├── page_break.min.css │ ├── quick_insert.css │ ├── quick_insert.min.css │ ├── special_characters.css │ ├── special_characters.min.css │ ├── table.css │ ├── table.min.css │ ├── trim_video.css │ ├── trim_video.min.css │ ├── video.css │ └── video.min.css ├── themes │ ├── dark.css │ ├── dark.min.css │ ├── gray.css │ ├── gray.min.css │ ├── royal.css │ └── royal.min.css └── third_party │ ├── embedly.css │ ├── embedly.min.css │ ├── font_awesome.css │ ├── font_awesome.min.css │ ├── image_tui.css │ ├── image_tui.min.css │ ├── spell_checker.css │ └── spell_checker.min.css ├── editor.jpg ├── html ├── 3rd-party │ ├── aviary │ │ └── index.html │ ├── bootstrap │ │ ├── grid.html │ │ ├── lists.html │ │ └── modal.html │ ├── code-mirror.html │ ├── font-awesome-5-css.html │ ├── font-awesome-5-js.html │ ├── jquery │ │ ├── mobile.html │ │ └── ui_modal.html │ ├── spell-checker │ │ └── spell-checker.html │ └── tui │ │ └── index.html ├── api │ ├── get_html.html │ ├── init_destroy.html │ ├── insert_html.html │ ├── live_code_preview.html │ ├── live_content_preview.html │ └── selection.html ├── buttons │ ├── custom_buttons.html │ ├── custom_dropdown.html │ ├── external_button.html │ └── subscript_superscript.html ├── events │ ├── blur_focus.html │ ├── content_changed.html │ ├── drop.html │ ├── image_removed.html │ └── initialized_destroy.html ├── file_s3_upload.php ├── image │ ├── custom_button.html │ ├── default_width.html │ ├── image_styles.html │ └── insert_base64.html ├── image_s3_upload.php ├── init_inside_iframe │ ├── basic.html │ ├── content.html │ └── inline.html ├── init_on_click │ ├── basic.html │ ├── inline.html │ └── two_editors.html ├── initialization │ ├── edit_in_popup.html │ ├── init_on_button.html │ ├── init_on_click.html │ ├── init_on_h1.html │ ├── init_on_image.html │ ├── init_on_link.html │ └── initialized_event.html ├── international │ ├── direction_rtl.html │ ├── language.html │ └── rtl_ltr_buttons.html ├── link │ ├── custom_validation.html │ ├── link_styles.html │ └── predefined_links.html ├── misc │ ├── scrollable_container.html │ └── scrollable_container_inline.html ├── paragraph_modes │ ├── enter_br.html │ ├── enter_div.html │ └── enter_p.html ├── paste │ ├── attrs.html │ ├── plain.html │ └── tags.html ├── plugins │ ├── char_counter.html │ ├── full_screen.html │ ├── line_breaker.html │ └── quick_insert.html ├── popular │ ├── disable_edit.html │ ├── disable_paragraphs.html │ ├── full.html │ ├── full_page.html │ ├── iframe.html │ ├── init_on_click.html │ ├── textarea.html │ ├── toolbar_buttons.html │ ├── toolbar_inline.html │ ├── two_instances.html │ └── z_index.html ├── popups │ ├── colors.html │ ├── custom.html │ └── emoticons.html ├── styling │ ├── adjustable_height.html │ ├── font_family.html │ ├── height.html │ ├── inline.html │ ├── paragraph.html │ ├── placeholder.html │ └── width.html ├── table │ ├── cell_style.html │ ├── insert_helper.html │ ├── nested.html │ ├── resize.html │ └── style.html ├── themes │ ├── dark.html │ ├── gray.html │ └── royal.html ├── toolbar │ ├── bottom.html │ ├── bottom_offset.html │ ├── buttons.html │ ├── external.html │ ├── external_inline.html │ ├── inline.html │ ├── inline_selection.html │ ├── offset.html │ ├── show_selection.html │ └── sticky.html └── typing │ ├── keep_format.html │ ├── shortcuts.html │ └── tab.html ├── img └── photo1.jpg ├── index.d.ts ├── index.html ├── js ├── froala_editor.min.js ├── froala_editor.pkgd.min.js ├── languages │ ├── ar.js │ ├── bs.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── el.js │ ├── en_ca.js │ ├── en_gb.js │ ├── es.js │ ├── et.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── he.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── it.js │ ├── ja.js │ ├── ko.js │ ├── ku.js │ ├── me.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ ├── pt_br.js │ ├── pt_pt.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sl.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── uk.js │ ├── vi.js │ ├── zh_cn.js │ └── zh_tw.js ├── plugins.pkgd.min.js ├── plugins │ ├── align.min.js │ ├── char_counter.min.js │ ├── code_beautifier.min.js │ ├── code_view.min.js │ ├── colors.min.js │ ├── cryptojs.min.js │ ├── draggable.min.js │ ├── edit_in_popup.min.js │ ├── emoticons.min.js │ ├── entities.min.js │ ├── export_to_word.min.js │ ├── file.min.js │ ├── files_manager.min.js │ ├── filestack.min.js │ ├── find_and_replace.min.js │ ├── font_family.min.js │ ├── font_size.min.js │ ├── forms.min.js │ ├── fullscreen.min.js │ ├── help.min.js │ ├── image.min.js │ ├── image_manager.min.js │ ├── inline_class.min.js │ ├── inline_style.min.js │ ├── line_breaker.min.js │ ├── line_height.min.js │ ├── link.min.js │ ├── link_to_anchor.min.js │ ├── lists.min.js │ ├── markdown.min.js │ ├── page_break.min.js │ ├── paragraph_format.min.js │ ├── paragraph_style.min.js │ ├── print.min.js │ ├── quick_insert.min.js │ ├── quote.min.js │ ├── save.min.js │ ├── special_characters.min.js │ ├── table.min.js │ ├── track_changes.min.js │ ├── trim_video.min.js │ ├── url.min.js │ ├── video.min.js │ ├── word_counter.min.js │ └── word_paste.min.js └── third_party │ ├── embedly.min.js │ ├── font_awesome.min.js │ ├── image_tui.min.js │ ├── showdown.min.js │ └── spell_checker.min.js └── package.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | froala_editor.js 2 | *~ 3 | .idea 4 | node_modules 5 | dist 6 | npm-debug.log 7 | .DS_STORE -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/.replit -------------------------------------------------------------------------------- /Froala_ThirdPartyLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/Froala_ThirdPartyLicense.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/composer.json -------------------------------------------------------------------------------- /css/froala_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_editor.css -------------------------------------------------------------------------------- /css/froala_editor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_editor.min.css -------------------------------------------------------------------------------- /css/froala_editor.pkgd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_editor.pkgd.css -------------------------------------------------------------------------------- /css/froala_editor.pkgd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_editor.pkgd.min.css -------------------------------------------------------------------------------- /css/froala_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_style.css -------------------------------------------------------------------------------- /css/froala_style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/froala_style.min.css -------------------------------------------------------------------------------- /css/plugins.pkgd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins.pkgd.css -------------------------------------------------------------------------------- /css/plugins.pkgd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins.pkgd.min.css -------------------------------------------------------------------------------- /css/plugins/char_counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/char_counter.css -------------------------------------------------------------------------------- /css/plugins/char_counter.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/char_counter.min.css -------------------------------------------------------------------------------- /css/plugins/code_view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/code_view.css -------------------------------------------------------------------------------- /css/plugins/code_view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/code_view.min.css -------------------------------------------------------------------------------- /css/plugins/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/colors.css -------------------------------------------------------------------------------- /css/plugins/colors.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/colors.min.css -------------------------------------------------------------------------------- /css/plugins/draggable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/draggable.css -------------------------------------------------------------------------------- /css/plugins/draggable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/draggable.min.css -------------------------------------------------------------------------------- /css/plugins/emoticons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/emoticons.css -------------------------------------------------------------------------------- /css/plugins/emoticons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/emoticons.min.css -------------------------------------------------------------------------------- /css/plugins/file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/file.css -------------------------------------------------------------------------------- /css/plugins/file.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/file.min.css -------------------------------------------------------------------------------- /css/plugins/files_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/files_manager.css -------------------------------------------------------------------------------- /css/plugins/files_manager.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/files_manager.min.css -------------------------------------------------------------------------------- /css/plugins/filestack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/filestack.css -------------------------------------------------------------------------------- /css/plugins/filestack.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/filestack.min.css -------------------------------------------------------------------------------- /css/plugins/find_and_replace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/find_and_replace.css -------------------------------------------------------------------------------- /css/plugins/find_and_replace.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/find_and_replace.min.css -------------------------------------------------------------------------------- /css/plugins/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/fullscreen.css -------------------------------------------------------------------------------- /css/plugins/fullscreen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/fullscreen.min.css -------------------------------------------------------------------------------- /css/plugins/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/help.css -------------------------------------------------------------------------------- /css/plugins/help.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/help.min.css -------------------------------------------------------------------------------- /css/plugins/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/image.css -------------------------------------------------------------------------------- /css/plugins/image.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/image.min.css -------------------------------------------------------------------------------- /css/plugins/image_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/image_manager.css -------------------------------------------------------------------------------- /css/plugins/image_manager.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/image_manager.min.css -------------------------------------------------------------------------------- /css/plugins/line_breaker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/line_breaker.css -------------------------------------------------------------------------------- /css/plugins/line_breaker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/line_breaker.min.css -------------------------------------------------------------------------------- /css/plugins/link_to_anchor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/link_to_anchor.css -------------------------------------------------------------------------------- /css/plugins/link_to_anchor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/link_to_anchor.min.css -------------------------------------------------------------------------------- /css/plugins/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/markdown.css -------------------------------------------------------------------------------- /css/plugins/markdown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/markdown.min.css -------------------------------------------------------------------------------- /css/plugins/page_break.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/page_break.css -------------------------------------------------------------------------------- /css/plugins/page_break.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/page_break.min.css -------------------------------------------------------------------------------- /css/plugins/quick_insert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/quick_insert.css -------------------------------------------------------------------------------- /css/plugins/quick_insert.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/quick_insert.min.css -------------------------------------------------------------------------------- /css/plugins/special_characters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/special_characters.css -------------------------------------------------------------------------------- /css/plugins/special_characters.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/special_characters.min.css -------------------------------------------------------------------------------- /css/plugins/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/table.css -------------------------------------------------------------------------------- /css/plugins/table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/table.min.css -------------------------------------------------------------------------------- /css/plugins/trim_video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/trim_video.css -------------------------------------------------------------------------------- /css/plugins/trim_video.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/trim_video.min.css -------------------------------------------------------------------------------- /css/plugins/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/video.css -------------------------------------------------------------------------------- /css/plugins/video.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/plugins/video.min.css -------------------------------------------------------------------------------- /css/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/dark.css -------------------------------------------------------------------------------- /css/themes/dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/dark.min.css -------------------------------------------------------------------------------- /css/themes/gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/gray.css -------------------------------------------------------------------------------- /css/themes/gray.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/gray.min.css -------------------------------------------------------------------------------- /css/themes/royal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/royal.css -------------------------------------------------------------------------------- /css/themes/royal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/themes/royal.min.css -------------------------------------------------------------------------------- /css/third_party/embedly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/embedly.css -------------------------------------------------------------------------------- /css/third_party/embedly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/embedly.min.css -------------------------------------------------------------------------------- /css/third_party/font_awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/font_awesome.css -------------------------------------------------------------------------------- /css/third_party/font_awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/font_awesome.min.css -------------------------------------------------------------------------------- /css/third_party/image_tui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/image_tui.css -------------------------------------------------------------------------------- /css/third_party/image_tui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/image_tui.min.css -------------------------------------------------------------------------------- /css/third_party/spell_checker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/spell_checker.css -------------------------------------------------------------------------------- /css/third_party/spell_checker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/css/third_party/spell_checker.min.css -------------------------------------------------------------------------------- /editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/editor.jpg -------------------------------------------------------------------------------- /html/3rd-party/aviary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/aviary/index.html -------------------------------------------------------------------------------- /html/3rd-party/bootstrap/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/bootstrap/grid.html -------------------------------------------------------------------------------- /html/3rd-party/bootstrap/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/bootstrap/lists.html -------------------------------------------------------------------------------- /html/3rd-party/bootstrap/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/bootstrap/modal.html -------------------------------------------------------------------------------- /html/3rd-party/code-mirror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/code-mirror.html -------------------------------------------------------------------------------- /html/3rd-party/font-awesome-5-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/font-awesome-5-css.html -------------------------------------------------------------------------------- /html/3rd-party/font-awesome-5-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/font-awesome-5-js.html -------------------------------------------------------------------------------- /html/3rd-party/jquery/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/jquery/mobile.html -------------------------------------------------------------------------------- /html/3rd-party/jquery/ui_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/jquery/ui_modal.html -------------------------------------------------------------------------------- /html/3rd-party/spell-checker/spell-checker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/spell-checker/spell-checker.html -------------------------------------------------------------------------------- /html/3rd-party/tui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/3rd-party/tui/index.html -------------------------------------------------------------------------------- /html/api/get_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/get_html.html -------------------------------------------------------------------------------- /html/api/init_destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/init_destroy.html -------------------------------------------------------------------------------- /html/api/insert_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/insert_html.html -------------------------------------------------------------------------------- /html/api/live_code_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/live_code_preview.html -------------------------------------------------------------------------------- /html/api/live_content_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/live_content_preview.html -------------------------------------------------------------------------------- /html/api/selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/api/selection.html -------------------------------------------------------------------------------- /html/buttons/custom_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/buttons/custom_buttons.html -------------------------------------------------------------------------------- /html/buttons/custom_dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/buttons/custom_dropdown.html -------------------------------------------------------------------------------- /html/buttons/external_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/buttons/external_button.html -------------------------------------------------------------------------------- /html/buttons/subscript_superscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/buttons/subscript_superscript.html -------------------------------------------------------------------------------- /html/events/blur_focus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/events/blur_focus.html -------------------------------------------------------------------------------- /html/events/content_changed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/events/content_changed.html -------------------------------------------------------------------------------- /html/events/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/events/drop.html -------------------------------------------------------------------------------- /html/events/image_removed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/events/image_removed.html -------------------------------------------------------------------------------- /html/events/initialized_destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/events/initialized_destroy.html -------------------------------------------------------------------------------- /html/file_s3_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/file_s3_upload.php -------------------------------------------------------------------------------- /html/image/custom_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/image/custom_button.html -------------------------------------------------------------------------------- /html/image/default_width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/image/default_width.html -------------------------------------------------------------------------------- /html/image/image_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/image/image_styles.html -------------------------------------------------------------------------------- /html/image/insert_base64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/image/insert_base64.html -------------------------------------------------------------------------------- /html/image_s3_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/image_s3_upload.php -------------------------------------------------------------------------------- /html/init_inside_iframe/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_inside_iframe/basic.html -------------------------------------------------------------------------------- /html/init_inside_iframe/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_inside_iframe/content.html -------------------------------------------------------------------------------- /html/init_inside_iframe/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_inside_iframe/inline.html -------------------------------------------------------------------------------- /html/init_on_click/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_on_click/basic.html -------------------------------------------------------------------------------- /html/init_on_click/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_on_click/inline.html -------------------------------------------------------------------------------- /html/init_on_click/two_editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/init_on_click/two_editors.html -------------------------------------------------------------------------------- /html/initialization/edit_in_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/edit_in_popup.html -------------------------------------------------------------------------------- /html/initialization/init_on_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/init_on_button.html -------------------------------------------------------------------------------- /html/initialization/init_on_click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/init_on_click.html -------------------------------------------------------------------------------- /html/initialization/init_on_h1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/init_on_h1.html -------------------------------------------------------------------------------- /html/initialization/init_on_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/init_on_image.html -------------------------------------------------------------------------------- /html/initialization/init_on_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/init_on_link.html -------------------------------------------------------------------------------- /html/initialization/initialized_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/initialization/initialized_event.html -------------------------------------------------------------------------------- /html/international/direction_rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/international/direction_rtl.html -------------------------------------------------------------------------------- /html/international/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/international/language.html -------------------------------------------------------------------------------- /html/international/rtl_ltr_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/international/rtl_ltr_buttons.html -------------------------------------------------------------------------------- /html/link/custom_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/link/custom_validation.html -------------------------------------------------------------------------------- /html/link/link_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/link/link_styles.html -------------------------------------------------------------------------------- /html/link/predefined_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/link/predefined_links.html -------------------------------------------------------------------------------- /html/misc/scrollable_container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/misc/scrollable_container.html -------------------------------------------------------------------------------- /html/misc/scrollable_container_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/misc/scrollable_container_inline.html -------------------------------------------------------------------------------- /html/paragraph_modes/enter_br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paragraph_modes/enter_br.html -------------------------------------------------------------------------------- /html/paragraph_modes/enter_div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paragraph_modes/enter_div.html -------------------------------------------------------------------------------- /html/paragraph_modes/enter_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paragraph_modes/enter_p.html -------------------------------------------------------------------------------- /html/paste/attrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paste/attrs.html -------------------------------------------------------------------------------- /html/paste/plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paste/plain.html -------------------------------------------------------------------------------- /html/paste/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/paste/tags.html -------------------------------------------------------------------------------- /html/plugins/char_counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/plugins/char_counter.html -------------------------------------------------------------------------------- /html/plugins/full_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/plugins/full_screen.html -------------------------------------------------------------------------------- /html/plugins/line_breaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/plugins/line_breaker.html -------------------------------------------------------------------------------- /html/plugins/quick_insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/plugins/quick_insert.html -------------------------------------------------------------------------------- /html/popular/disable_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/disable_edit.html -------------------------------------------------------------------------------- /html/popular/disable_paragraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/disable_paragraphs.html -------------------------------------------------------------------------------- /html/popular/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/full.html -------------------------------------------------------------------------------- /html/popular/full_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/full_page.html -------------------------------------------------------------------------------- /html/popular/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/iframe.html -------------------------------------------------------------------------------- /html/popular/init_on_click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/init_on_click.html -------------------------------------------------------------------------------- /html/popular/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/textarea.html -------------------------------------------------------------------------------- /html/popular/toolbar_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/toolbar_buttons.html -------------------------------------------------------------------------------- /html/popular/toolbar_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/toolbar_inline.html -------------------------------------------------------------------------------- /html/popular/two_instances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/two_instances.html -------------------------------------------------------------------------------- /html/popular/z_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popular/z_index.html -------------------------------------------------------------------------------- /html/popups/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popups/colors.html -------------------------------------------------------------------------------- /html/popups/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popups/custom.html -------------------------------------------------------------------------------- /html/popups/emoticons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/popups/emoticons.html -------------------------------------------------------------------------------- /html/styling/adjustable_height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/adjustable_height.html -------------------------------------------------------------------------------- /html/styling/font_family.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/font_family.html -------------------------------------------------------------------------------- /html/styling/height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/height.html -------------------------------------------------------------------------------- /html/styling/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/inline.html -------------------------------------------------------------------------------- /html/styling/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/paragraph.html -------------------------------------------------------------------------------- /html/styling/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/placeholder.html -------------------------------------------------------------------------------- /html/styling/width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/styling/width.html -------------------------------------------------------------------------------- /html/table/cell_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/table/cell_style.html -------------------------------------------------------------------------------- /html/table/insert_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/table/insert_helper.html -------------------------------------------------------------------------------- /html/table/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/table/nested.html -------------------------------------------------------------------------------- /html/table/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/table/resize.html -------------------------------------------------------------------------------- /html/table/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/table/style.html -------------------------------------------------------------------------------- /html/themes/dark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/themes/dark.html -------------------------------------------------------------------------------- /html/themes/gray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/themes/gray.html -------------------------------------------------------------------------------- /html/themes/royal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/themes/royal.html -------------------------------------------------------------------------------- /html/toolbar/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/bottom.html -------------------------------------------------------------------------------- /html/toolbar/bottom_offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/bottom_offset.html -------------------------------------------------------------------------------- /html/toolbar/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/buttons.html -------------------------------------------------------------------------------- /html/toolbar/external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/external.html -------------------------------------------------------------------------------- /html/toolbar/external_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/external_inline.html -------------------------------------------------------------------------------- /html/toolbar/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/inline.html -------------------------------------------------------------------------------- /html/toolbar/inline_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/inline_selection.html -------------------------------------------------------------------------------- /html/toolbar/offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/offset.html -------------------------------------------------------------------------------- /html/toolbar/show_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/show_selection.html -------------------------------------------------------------------------------- /html/toolbar/sticky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/toolbar/sticky.html -------------------------------------------------------------------------------- /html/typing/keep_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/typing/keep_format.html -------------------------------------------------------------------------------- /html/typing/shortcuts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/typing/shortcuts.html -------------------------------------------------------------------------------- /html/typing/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/html/typing/tab.html -------------------------------------------------------------------------------- /img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/img/photo1.jpg -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/index.html -------------------------------------------------------------------------------- /js/froala_editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/froala_editor.min.js -------------------------------------------------------------------------------- /js/froala_editor.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/froala_editor.pkgd.min.js -------------------------------------------------------------------------------- /js/languages/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ar.js -------------------------------------------------------------------------------- /js/languages/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/bs.js -------------------------------------------------------------------------------- /js/languages/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/cs.js -------------------------------------------------------------------------------- /js/languages/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/da.js -------------------------------------------------------------------------------- /js/languages/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/de.js -------------------------------------------------------------------------------- /js/languages/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/el.js -------------------------------------------------------------------------------- /js/languages/en_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/en_ca.js -------------------------------------------------------------------------------- /js/languages/en_gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/en_gb.js -------------------------------------------------------------------------------- /js/languages/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/es.js -------------------------------------------------------------------------------- /js/languages/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/et.js -------------------------------------------------------------------------------- /js/languages/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/fa.js -------------------------------------------------------------------------------- /js/languages/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/fi.js -------------------------------------------------------------------------------- /js/languages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/fr.js -------------------------------------------------------------------------------- /js/languages/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/he.js -------------------------------------------------------------------------------- /js/languages/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/hr.js -------------------------------------------------------------------------------- /js/languages/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/hu.js -------------------------------------------------------------------------------- /js/languages/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/id.js -------------------------------------------------------------------------------- /js/languages/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/it.js -------------------------------------------------------------------------------- /js/languages/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ja.js -------------------------------------------------------------------------------- /js/languages/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ko.js -------------------------------------------------------------------------------- /js/languages/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ku.js -------------------------------------------------------------------------------- /js/languages/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/me.js -------------------------------------------------------------------------------- /js/languages/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/nb.js -------------------------------------------------------------------------------- /js/languages/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/nl.js -------------------------------------------------------------------------------- /js/languages/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/pl.js -------------------------------------------------------------------------------- /js/languages/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/pt_br.js -------------------------------------------------------------------------------- /js/languages/pt_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/pt_pt.js -------------------------------------------------------------------------------- /js/languages/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ro.js -------------------------------------------------------------------------------- /js/languages/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/ru.js -------------------------------------------------------------------------------- /js/languages/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/sk.js -------------------------------------------------------------------------------- /js/languages/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/sl.js -------------------------------------------------------------------------------- /js/languages/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/sr.js -------------------------------------------------------------------------------- /js/languages/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/sv.js -------------------------------------------------------------------------------- /js/languages/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/th.js -------------------------------------------------------------------------------- /js/languages/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/tr.js -------------------------------------------------------------------------------- /js/languages/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/uk.js -------------------------------------------------------------------------------- /js/languages/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/vi.js -------------------------------------------------------------------------------- /js/languages/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/zh_cn.js -------------------------------------------------------------------------------- /js/languages/zh_tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/languages/zh_tw.js -------------------------------------------------------------------------------- /js/plugins.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins.pkgd.min.js -------------------------------------------------------------------------------- /js/plugins/align.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/align.min.js -------------------------------------------------------------------------------- /js/plugins/char_counter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/char_counter.min.js -------------------------------------------------------------------------------- /js/plugins/code_beautifier.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/code_beautifier.min.js -------------------------------------------------------------------------------- /js/plugins/code_view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/code_view.min.js -------------------------------------------------------------------------------- /js/plugins/colors.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/colors.min.js -------------------------------------------------------------------------------- /js/plugins/cryptojs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/cryptojs.min.js -------------------------------------------------------------------------------- /js/plugins/draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/draggable.min.js -------------------------------------------------------------------------------- /js/plugins/edit_in_popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/edit_in_popup.min.js -------------------------------------------------------------------------------- /js/plugins/emoticons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/emoticons.min.js -------------------------------------------------------------------------------- /js/plugins/entities.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/entities.min.js -------------------------------------------------------------------------------- /js/plugins/export_to_word.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/export_to_word.min.js -------------------------------------------------------------------------------- /js/plugins/file.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/file.min.js -------------------------------------------------------------------------------- /js/plugins/files_manager.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/files_manager.min.js -------------------------------------------------------------------------------- /js/plugins/filestack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/filestack.min.js -------------------------------------------------------------------------------- /js/plugins/find_and_replace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/find_and_replace.min.js -------------------------------------------------------------------------------- /js/plugins/font_family.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/font_family.min.js -------------------------------------------------------------------------------- /js/plugins/font_size.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/font_size.min.js -------------------------------------------------------------------------------- /js/plugins/forms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/forms.min.js -------------------------------------------------------------------------------- /js/plugins/fullscreen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/fullscreen.min.js -------------------------------------------------------------------------------- /js/plugins/help.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/help.min.js -------------------------------------------------------------------------------- /js/plugins/image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/image.min.js -------------------------------------------------------------------------------- /js/plugins/image_manager.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/image_manager.min.js -------------------------------------------------------------------------------- /js/plugins/inline_class.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/inline_class.min.js -------------------------------------------------------------------------------- /js/plugins/inline_style.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/inline_style.min.js -------------------------------------------------------------------------------- /js/plugins/line_breaker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/line_breaker.min.js -------------------------------------------------------------------------------- /js/plugins/line_height.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/line_height.min.js -------------------------------------------------------------------------------- /js/plugins/link.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/link.min.js -------------------------------------------------------------------------------- /js/plugins/link_to_anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/link_to_anchor.min.js -------------------------------------------------------------------------------- /js/plugins/lists.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/lists.min.js -------------------------------------------------------------------------------- /js/plugins/markdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/markdown.min.js -------------------------------------------------------------------------------- /js/plugins/page_break.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/page_break.min.js -------------------------------------------------------------------------------- /js/plugins/paragraph_format.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/paragraph_format.min.js -------------------------------------------------------------------------------- /js/plugins/paragraph_style.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/paragraph_style.min.js -------------------------------------------------------------------------------- /js/plugins/print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/print.min.js -------------------------------------------------------------------------------- /js/plugins/quick_insert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/quick_insert.min.js -------------------------------------------------------------------------------- /js/plugins/quote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/quote.min.js -------------------------------------------------------------------------------- /js/plugins/save.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/save.min.js -------------------------------------------------------------------------------- /js/plugins/special_characters.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/special_characters.min.js -------------------------------------------------------------------------------- /js/plugins/table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/table.min.js -------------------------------------------------------------------------------- /js/plugins/track_changes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/track_changes.min.js -------------------------------------------------------------------------------- /js/plugins/trim_video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/trim_video.min.js -------------------------------------------------------------------------------- /js/plugins/url.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/url.min.js -------------------------------------------------------------------------------- /js/plugins/video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/video.min.js -------------------------------------------------------------------------------- /js/plugins/word_counter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/word_counter.min.js -------------------------------------------------------------------------------- /js/plugins/word_paste.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/plugins/word_paste.min.js -------------------------------------------------------------------------------- /js/third_party/embedly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/third_party/embedly.min.js -------------------------------------------------------------------------------- /js/third_party/font_awesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/third_party/font_awesome.min.js -------------------------------------------------------------------------------- /js/third_party/image_tui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/third_party/image_tui.min.js -------------------------------------------------------------------------------- /js/third_party/showdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/third_party/showdown.min.js -------------------------------------------------------------------------------- /js/third_party/spell_checker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/js/third_party/spell_checker.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froala/wysiwyg-editor/HEAD/package.json --------------------------------------------------------------------------------