﻿$(document).ready(function () {

    var htmlEditor = $(".htmlEditor");

    CKEDITOR.editorConfig = function (config) {

        config.toolbar =
            [
                ['Source', 'Preview'],
                ['Undo', 'Redo'],
                ['Maximize'],
                ['ShowBlocks'], ['CreateDiv'],
                '/',
                ['Format'],
                ['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
                ['Image'],
                ['Link', 'Unlink', 'Anchor'],
                ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
                ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
            ];


    };

    // Config htmlEditor

    htmlEditor.each(function () {

        $(this).ckeditor();

    });

});

