//= require ckeditor/init
CKEDITOR.editorConfig = function( config ) {
config.enterMode = CKEDITOR.ENTER_BR; config.toolbar = 'InterviewDefault'; config.toolbar_InterviewDefault = [ { name: 'font', items : [ 'Format','FontSize' ] }, { name: 'basicstyles', items : [ 'Underline','Bold','Italic','Strike' ] }, { name: 'colors', items : [ 'TextColor','BGColor' ] }, { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent' ] }, { name: 'justify', items : [ 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] }, { name: 'insert', items : [ 'Link','Table' ] }, { name: 'tools', items : [ 'Maximize','-','Source' ] } ];
};