Changeset 428
- Timestamp:
- 2007-07-09 13:42:29 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fcktools.js
r427 r428 443 443 for ( var i = 0 ; i < hexstr.length ; i+=4 ) 444 444 { 445 var codePoint = symbols[ hexstr [i]] << 12 ;446 codePoint |= symbols[ hexstr [ i + 1 ]] << 8 ;447 codePoint |= symbols[ hexstr [ i + 2 ]] << 4 ;448 codePoint |= symbols[ hexstr [ i + 3 ]] ;445 var codePoint = symbols[ hexstr.charAt( i ) ] << 12 ; 446 codePoint |= symbols[ hexstr.charAt( i + 1 ) ] << 8 ; 447 codePoint |= symbols[ hexstr.charAt( i + 2 ) ] << 4 ; 448 codePoint |= symbols[ hexstr.charAt( i + 3 ) ] ; 449 449 output.push( String.fromCharCode( codePoint ) ) ; 450 450 }