I followed your instruction to add source to the editor, however it didn't work. Please see below for my config.js file details:
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or
http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For complete reference see:
//
http://docs.ckeditor.com/#!/api/CKEDITOR.config
// NOTE: if you make changes to this file, make sure that you do not overwrite it when upgrading Q2A!
// The toolbar arrangement, two rows of buttons
config.toolbar = [
{ name: 'basic', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Superscript' ] },
{ name: 'color', items: [ 'TextColor', 'BGColor' ] },
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Blockquote' ] },
{ name: 'align', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
{ name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar', 'Smiley' ] },
{ name: 'links', items: [ 'Link', 'Unlink' ] },
'/',
{ name: 'source', items: [ 'Source' ] },
{ name: 'font', items: [ 'Font', 'FontSize', 'Format' ] },
{ name: 'last', items: [ 'RemoveFormat', 'Source', 'Maximize' ] },
];
// Set the most common block elements
config.format_tags = 'p;h1;h2;h3;pre';
config.entities = false;
// Make dialogs simpler
config.removeDialogTabs = 'image:advanced;link:advanced;table:advanced';
// Use native spell checking (note: Ctrl+right-click is required for native context menu)
config.disableNativeSpellChecker = false;
// Prevent blank paragraphs
config.fillEmptyBlocks = false;
config.extraPlugins: 'sourcearea';
};
Any comments on why is not working?