Index: lams_central/web/fckeditor/fckeditor.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/Attic/fckeditor.js,v diff -u -r1.2 -r1.3 --- lams_central/web/fckeditor/fckeditor.js 15 Aug 2005 06:33:30 -0000 1.2 +++ lams_central/web/fckeditor/fckeditor.js 12 Dec 2005 05:18:56 -0000 1.3 @@ -8,6 +8,8 @@ * For further information visit: * http://www.fckeditor.net/ * + * "Support Open Source software. What about a donation today?" + * * File Name: fckeditor.js * This is the integration file for JavaScript. * @@ -114,7 +116,9 @@ FCKeditor.prototype._GetIFrameHtml = function() { - var sLink = this.BasePath + 'editor/fckeditor.html?InstanceName=' + this.InstanceName ; + var sFile = (/fcksource=true/i).test( window.top.location.search ) ? 'fckeditor.original.html' : 'fckeditor.html' ; + + var sLink = this.BasePath + 'editor/' + sFile + '?InstanceName=' + this.InstanceName ; if (this.ToolbarSet) sLink += '&Toolbar=' + this.ToolbarSet ; return '' ;