Ticket #2738: 2738.patch
File 2738.patch, 1.3 KB (added by , 14 years ago) |
---|
-
editor/_source/commandclasses/fck_othercommands.js
311 311 return state ; 312 312 } 313 313 314 FCKVisitLinkCommand = function()314 var FCKVisitLinkCommand = function() 315 315 { 316 316 this.Name = 'VisitLink'; 317 317 } -
editor/_source/internals/fckdocumentprocessor.js
122 122 } 123 123 124 124 // EMBED and OBJECT tags. 125 FCKEmbedAndObjectProcessor = (function()125 var FCKEmbedAndObjectProcessor = (function() 126 126 { 127 127 var customProcessors = [] ; 128 128 -
fckeditor.js
177 177 if (this.ToolbarSet) 178 178 sLink += '&Toolbar=' + this.ToolbarSet ; 179 179 180 html = '<iframe id="' + this.InstanceName +180 var html = '<iframe id="' + this.InstanceName + 181 181 '___Frame" src="' + sLink + 182 182 '" width="' + this.Width + 183 183 '" height="' + this.Height ;