Changeset 503

Show
Ignore:
Timestamp:
08/12/08 15:35:38 (5 months ago)
Author:
rgl
Message:

Fix typo in fromUtf8.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/daemon/orbited/static/Orbited.js

    r500 r503  
    21562156            var binary = pad(chr.toString(2), 11); 
    21572157            ret.push(e(parseInt("110"   + binary.substr(0,5), 2))); 
    2158             ret.push(eparseInt("10"    + binary.substr(5,6), 2)); 
     2158            ret.push(e(parseInt("10"    + binary.substr(5,6), 2))); 
    21592159        } else if(chr <= 0xFFFF) { 
    21602160            var binary = pad(chr.toString(2), 16);