Ticket #1643: 1643_3.patch
File 1643_3.patch, 4.7 KB (added by , 17 years ago) |
---|
-
_whatsnew.html
57 57 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/339">#339</a>] [<a 58 58 target="_blank" href="http://dev.fckeditor.net/ticket/681">#681</a>] The SpellerPages 59 59 spell checker will now completely ignore the presence of HTML tags in the text.</li> 60 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1643">#1643</a>] Resolved 61 several "strict warning" messages in Firefox when running FCKeditor.</li> 60 62 </ul> 61 63 <p> 62 64 <a href="_whatsnew_history.html">See previous versions history</a> -
editor/_source/classes/fckcontextmenu.js
156 156 return false ; 157 157 } 158 158 } 159 return true ; 159 160 } 160 161 161 162 function FCKContextMenu_AttachedElement_OnContextMenu( ev, fckContextMenu, el ) -
editor/_source/classes/fckdomrange.js
99 99 this._UpdateElementInfo() ; 100 100 return docFrag ; 101 101 } 102 return null ; 102 103 }, 103 104 104 105 CheckIsCollapsed : function() 105 106 { 106 107 if ( this._Range ) 107 108 return this._Range.collapsed ; 109 110 return false ; 108 111 }, 109 112 110 113 Collapse : function( toStart ) -
editor/_source/classes/fcktoolbarspecialcombo.js
32 32 { 33 33 this.SourceView = false ; 34 34 this.ContextSensitive = true ; 35 this.FieldWidth = null ; 36 this.PanelWidth = null ; 37 this.PanelMaxHeight = null ; 35 38 //this._LastValue = null ; 36 39 } 37 40 -
editor/_source/commandclasses/fckjustifycommands.js
39 39 switch ( alignValue ) 40 40 { 41 41 case 'left' : 42 return classes[0] ;42 return classes[0] || null ; 43 43 case 'center' : 44 return classes[1] ;44 return classes[1] || null ; 45 45 case 'right' : 46 return classes[2] ;46 return classes[2] || null ; 47 47 case 'justify' : 48 return classes[3] ;48 return classes[3] || null ; 49 49 } 50 50 } 51 51 return null ; -
editor/_source/internals/fck.js
474 474 window.onresize() ; 475 475 }, 476 476 477 // For the FocusManager478 HasFocus : false,479 480 481 477 // This collection is used by the browser specific implementations to tell 482 478 // which named commands must be handled separately. 483 479 RedirectNamedCommands : new Object(), -
editor/_source/internals/fckstyles.js
88 88 var style = styles[ styleName ] ; 89 89 var state = style.CheckActive( path ) ; 90 90 91 if ( st yle._LastState != state)91 if ( state != ( style._LastState || null ) ) 92 92 { 93 93 style._LastState = state ; 94 94 -
editor/dtd/fck_xhtml10strict.js
23 23 */ 24 24 FCK.DTD = (function() 25 25 { 26 X = FCKTools.Merge ;26 var X = FCKTools.Merge ; 27 27 28 28 var H,I,J,K,C,L,M,A,B,D,E,G,N,F ; 29 29 A = {ins:1, del:1, script:1} ; -
editor/dtd/fck_xhtml10transitional.js
23 23 */ 24 24 FCK.DTD = (function() 25 25 { 26 X = FCKTools.Merge ;26 var X = FCKTools.Merge ; 27 27 28 28 var A,L,J,M,N,O,D,H,P,K,Q,F,G,C,B,E,I ; 29 29 A = {isindex:1, fieldset:1} ; … … 137 137 changed the map to avoid breaking the links on pieces, having 138 138 "<b>this is a </b><a><b>link</b> test</a>", instead of 139 139 "<b>this is a <a>link</a></b><a> test</a>". 140 */ 141 No newline at end of file 140 */