Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 2047 → Rev 2048

/trunk/api/fckeditor/fckeditor.js
1,6 → 1,6
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
59,8 → 59,8
*/
FCKeditor.MinWidth = 750 ;
 
FCKeditor.prototype.Version = '2.6.3' ;
FCKeditor.prototype.VersionBuild = '19836' ;
FCKeditor.prototype.Version = '2.6.4' ;
FCKeditor.prototype.VersionBuild = '21629' ;
 
FCKeditor.prototype.Create = function()
{
106,6 → 106,8
 
FCKeditor.prototype.ReplaceTextarea = function()
{
if ( document.getElementById( this.InstanceName + '___Frame' ) )
return ;
if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
{
// We must check the elements firstly using the Id and then the name.
175,7 → 177,7
if (this.ToolbarSet)
sLink += '&Toolbar=' + this.ToolbarSet ;
 
html = '<iframe id="' + this.InstanceName +
var html = '<iframe id="' + this.InstanceName +
'___Frame" src="' + sLink +
'" width="' + this.Width +
'" height="' + this.Height ;