-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display format #36
Labels
Comments
Do you mean have the option to show a digital timer as well? For eg |
Example: $("#myTimer").timer({
seconds: 100000,
format: "%d days %h hr(s) %m min(s) %s sec(s)"
}); The ability to define the format the user wants to show. So for a digital one it could be: $("#myTimer").timer({
seconds: 10000,
format: "%h:%m:%s"
}); Or for leading zeros: $("#myTimer").timer({
seconds: 100000,
format: "%H:%M:%S"
}); |
This is an excellent idea. Marking it as an enhancement. |
PR at #37 |
Implemented with 6d4959f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be great if we can define the format of the displayed text.
The text was updated successfully, but these errors were encountered: