Changeset 2063
- Timestamp:
- 2008-06-12 13:05:29 (7 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
r2046 r2063 163 163 while ( oContainer ) 164 164 { 165 if ( oContainer.nodeType == 1 && oContainer.tagName .IEquals( nodeTagName )) return true ;165 if ( oContainer.nodeType == 1 && oContainer.tagName == nodeTagName ) return true ; 166 166 oContainer = oContainer.parentNode ; 167 167 } … … 181 181 while ( oContainer ) 182 182 { 183 if ( oContainer.nodeName .IEquals( nodeTagName ))183 if ( oContainer.nodeName == nodeTagName ) 184 184 return oContainer ; 185 185 -
FCKeditor/trunk/editor/_source/internals/fckselection_ie.js
r2046 r2063 148 148 while ( oContainer ) 149 149 { 150 if ( oContainer.tagName .IEquals( nodeTagName )) return true ;150 if ( oContainer.tagName == nodeTagName ) return true ; 151 151 oContainer = oContainer.parentNode ; 152 152 } -
FCKeditor/trunk/_whatsnew.html
r2061 r2063 138 138 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2239">#2239</a>] The PHP 139 139 code in sampleposteddata.php has been changed from "<?=" to "<? echo".</li> 140 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2254">#2254</a>] Minor141 fix in fckselection for nodeName attribute detection.</li>142 140 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2241">#2241</a>] Fixed 143 141 404 error in floating panels when FCKeditor is installed to a different domain.</li>