Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SyntaxHighlighter
#3
those lines need semicolons

config.extraPlugins = 'syntaxhighlight';
config.syntaxhighlightLangDefault = 'php';

it is object assignment, not an object array as the other configs are.
and i just realized resize_dir does not have a semicolon, its actually not required, its a huge javascript debate.\

Code:
CKEDITOR.editorConfig = function( config )
{
    // Define changes to default configuration here.
    config.resize_dir = 'vertical' // vertical resize
    config.toolbarCanCollapse = false; // hide toolbar collapse button
    config.dialog_backgroundCoverColor = '#000000';

     config.extraPlugins = 'syntaxhighlight';
     config.syntaxhighlightLangDefault = 'php';
    
config.toolbar_advanced =
        [['Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Table', 'TextColor', 'BGColor', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source'],
        '/',
        ['Styles','Format','Font','FontSize']];    

    config.toolbar_basic =
        [['Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source']];
        
        

};
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply


Messages In This Thread
SyntaxHighlighter - by lnickel - 2013-08-31, 02:12:04
RE: SyntaxHighlighter - by shawn_a - 2013-08-31, 07:49:52
RE: SyntaxHighlighter - by shawn_a - 2013-08-31, 08:04:02
RE: SyntaxHighlighter - by lnickel - 2013-09-05, 12:04:23



Users browsing this thread: 1 Guest(s)