Ticket #3925: 3925.patch
File 3925.patch, 4.6 KB (added by , 14 years ago) |
---|
-
editor/_source/internals/fckdialog.js
79 79 /** 80 80 * Opens a dialog window using the standard dialog template. 81 81 */ 82 OpenDialog : function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow,resizable )82 OpenDialog : function( dialogName, dialogTitle, dialogPage, width, height, customValue, resizable ) 83 83 { 84 84 if ( !topDialog ) 85 85 this.DisplayMainCover() ; -
editor/_source/commandclasses/fck_othercommands.js
40 40 41 41 FCKDialogCommand.prototype.Execute = function() 42 42 { 43 FCKDialog.OpenDialog( 'FCKDialog_' + this.Name , this.Title, this.Url, this.Width, this.Height, this.CustomValue, null,this.Resizable ) ;43 FCKDialog.OpenDialog( 'FCKDialog_' + this.Name , this.Title, this.Url, this.Width, this.Height, this.CustomValue, this.Resizable ) ; 44 44 } 45 45 46 46 FCKDialogCommand.prototype.GetState = function() -
editor/dialog/fck_tablecell.html
139 139 140 140 function SelectColor( wich ) 141 141 { 142 oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', oEditor.FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, wich == 'Back' ? SelectBackColor : SelectBorderColor , window) ;142 oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', oEditor.FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, wich == 'Back' ? SelectBackColor : SelectBorderColor ) ; 143 143 } 144 144 145 145 </script> -
editor/dialog/fck_docprops.html
374 374 { 375 375 switch ( wich ) 376 376 { 377 case 'Back' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectBackColor , window) ; return ;378 case 'ColorText' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorText , window) ; return ;379 case 'ColorLink' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorLink , window) ; return ;380 case 'ColorVisited' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorVisited , window) ; return ;381 case 'ColorActive' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorActive , window) ; return ;377 case 'Back' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectBackColor ) ; return ; 378 case 'ColorText' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorText ) ; return ; 379 case 'ColorLink' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorLink ) ; return ; 380 case 'ColorVisited' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorVisited ) ; return ; 381 case 'ColorActive' : oEditor.FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320, SelectColorActive ) ; return ; 382 382 } 383 383 } 384 384 -
_whatsnew.html
75 75 custom connector tried to use the "url" attribute for files it was always reencoded.</li> 76 76 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1537">#1537</a>] Fixed extra 77 77 <p> tag added before pasted contents from Paste From Word dialog.</li> 78 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3925">#3925</a>] Removed obsolete 79 parentWindow reference from FCKDialog.OpenDialog().</li> 78 80 </ul> 79 81 <p> 80 82 <a href="_whatsnew_history.html">See previous versions history</a></p>