Tea Timer 1.3
Posted on
This is another bug fix release. Tea Timer couldn’t handle the values “08” and
“09” for hours/minutes/seconds correctly, which is now fixed. The JavaScript
function parseInt()
handles strings beginning with zero as octal numbers
and there simply is no octal 8 or 9. So I just had to tell parseInt()
that
it must handle all strings as decimal numbers to fix this issue.
Thx to pat for his bug report.