﻿
(function() {

    if (typeof tinyMCE == "undefined" || !tinyMCE) {
        return;
    }

    InitConfigTinyMCE();
    
})();

function InitConfigTinyMCE() {
    tinyMCE.init({
        theme: 'advanced',
        plugins: 'safari,advimage,inlinepopups,fullscreen,xhtmlxtras,table,contextmenu,paste,media,searchreplace',
        mode: 'specific_textareas',
        editor_selector: 'html-editor',
        height: "160",
        width: "620",
        content_css: '/css/tiny_mce.css',
        theme_advanced_resizing: true,
        theme_advanced_resize_horizontal: false,
        theme_advanced_resizing_use_cookie: false,
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,cut,copy,paste,pastetext,pasteword,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,cleanup,code",
        theme_advanced_buttons2: "",
        theme_advanced_buttons3: "",
        theme_advanced_styles: '',
        convert_urls: false,
        forced_root_block: 'p',
        invalid_elements: "html,head,meta,title,body",
        remove_linebreaks: false,
        apply_source_formatting: true,
        indentation: '3em'
    });
}
