Skip to content

Textual representation of time incorrect #43

@jwluiten

Description

@jwluiten

text = (h >= 10 ? h : '0' + h) + ':' + (h >= 10 ? m : '0' + m) + ':' + (h >= 10 ? s : '0' + s);

text = (h >= 10 ? h : '0' + h) + ':' + (h >= 10 ? m : '0' + m) + ':' + (h >= 10 ? s : '0' + s);

should be:

text = (h >= 10 ? h : '0' + h) + ':' + (m >= 10 ? m : '0' + m) + ':' + (s >= 10 ? s : '0' + s);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions