this code is in the original hard_reset code (sony code?)
<function id="doDigit" params="part">
var keyCode = part.key.charCodeAt(0);
if (keyCode == 53) /* 5 */
this.bubble("doHardReset");
else
this.getModel().doDigit(part);
</function>
so i don't think that's the problem
|