/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /* * 31/05/2012 Tony Payne (1.0.1) * Max Window Height Reduced. * Image icon removed. * Built in Spell Checker replaced by ieSpell. * 14/06/2012 Tony Payne (1.0.2) * Add Browse Server to Link. */ /* Default all Links to "_blank" */ CKEDITOR.on('dialogDefinition', function ( ev ){ if(ev.data.name == 'link'){ ev.data.definition.getContents('target').get('linkTargetType')['default']='_blank'; } }); CKEDITOR.on( 'instanceReady', function( ev ) { var editor = ev.editor, dataProcessor = editor.dataProcessor, htmlFilter = dataProcessor && dataProcessor.htmlFilter; htmlFilter.addRules({ a : function ( element ){ element.attributes['target']="_blank"; } }); }); /* 14/06/2012 Tony Payne Function to read cookies */ function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i