(function($){
    $(function(){
        if (typeof CKEDITOR != "undefined") {
            $("form .field.editor-basic textarea").ckeditor(
                function(){ },
                {
                    toolbar : [
                        ['Bold', 'Italic', 'Underline', 'Strike', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'Source']
                    ],
                    coreStyles_underline : { element : 'span', attributes : {'class': 'underline'}},
                    coreStyles_strike : { element : 'span', attributes : {'class': 'strikethrough'}},
                    enterMode : CKEDITOR.ENTER_BR,
                    shiftEnterMode : CKEDITOR.ENTER_P,
                    toolbarCanCollapse : false,
                    resize_enabled : false
                }
            );
        }
    });
})(jQuery);
