TinyMCE打印插件

时间:2017-09-26 08:59:23

标签: javascript printing tinymce

我正在尝试将打印插件添加到我的TinyMCE小部件中,但它不起作用:

var option_tinymce = {
    script_url : '/ui/js/tinymce/tinymce.min.js',
    plugins: "code autosave insertdatetime textcolor print",
    toolbar1: "print code | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | outdent indent | undo redo | removeformat | forecolor backcolor | formatselect | restoredraft",
    menubar: false,
    toolbar_items_size: 'small',
    language: 'fr_FR',
    setup: function(editor) {
            editor.on('change', function(e) {
                $(editor.formElement).find('[name="modification_form"]').val("Yes");
            });
    },
    skin: 'pvx_light',
    content_css: "/ui/css/style.css, /ui/css/style_tiny.css",
    schema: "html5",
    autosave_restore_when_empty: false,
    resize : 'both'
}

0 个答案:

没有答案