Changeset 2046 for FCKeditor/trunk
- Timestamp:
- 06/09/08 07:28:18 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/internals/fckselection_gecko.js (modified) (2 diffs)
-
editor/_source/internals/fckselection_ie.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r2043 r2046 115 115 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2239">#2239</a>] The Samplepostdata.php has been 116 116 changed from "<?=" to "<? echo".</li> 117 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2254">#2254</a>] Minor fix in fckselection for 118 nodeName attribute detection.</li> 117 119 </ul> 118 120 <h3> -
FCKeditor/trunk/editor/_source/internals/fckselection_gecko.js
r1795 r2046 163 163 while ( oContainer ) 164 164 { 165 if ( oContainer.nodeType == 1 && oContainer.tagName == nodeTagName) return true ;165 if ( oContainer.nodeType == 1 && oContainer.tagName.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
r1971 r2046 148 148 while ( oContainer ) 149 149 { 150 if ( oContainer.tagName == nodeTagName) return true ;150 if ( oContainer.tagName.IEquals( nodeTagName ) ) return true ; 151 151 oContainer = oContainer.parentNode ; 152 152 }
Note: See TracChangeset
for help on using the changeset viewer.
