Changeset 2072
- Timestamp:
- 2008-06-17 10:34:58 (6 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 modified
-
editor/_source/internals/fckselection_gecko.js (modified) (2 diffs)
-
editor/_source/internals/fckselection_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fckselection_gecko.js
r2063 r2072 163 163 while ( oContainer ) 164 164 { 165 if ( oContainer.nodeType == 1 && oContainer. tagName == nodeTagName) return true ;165 if ( oContainer.nodeType == 1 && oContainer.nodeName.IEquals( nodeTagName ) ) return true ; 166 166 oContainer = oContainer.parentNode ; 167 167 } … … 181 181 while ( oContainer ) 182 182 { 183 if ( oContainer.nodeName == nodeTagName)183 if ( oContainer.nodeName.IEquals( nodeTagName ) ) 184 184 return oContainer ; 185 185 -
FCKeditor/trunk/editor/_source/internals/fckselection_ie.js
r2063 r2072 148 148 while ( oContainer ) 149 149 { 150 if ( oContainer. tagName == nodeTagName) return true ;150 if ( oContainer.nodeName.IEquals( nodeTagName ) ) return true ; 151 151 oContainer = oContainer.parentNode ; 152 152 } -
FCKeditor/trunk/_whatsnew.html
r2070 r2072 47 47 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2248">#2248</a>] Calling FCK.InsertHtml( 'nbsp;') was inserting a plain space instead of a non breaking space 48 48 character.</li> 49 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2254">#2254</a>] Minor fix in fckselection for 50 nodeTagName object.</li> 49 51 </ul> 50 52 <p>