Skip to content
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

Read-only OS time formatting preferences #79

Closed
zbraniecki opened this issue Sep 21, 2015 · 3 comments
Closed

Read-only OS time formatting preferences #79

zbraniecki opened this issue Sep 21, 2015 · 3 comments

Comments

@zbraniecki
Copy link

All operating systems allow user to select time format. Usually between 12h, 24h or follow automatic.

Firefox OS is currently providing navigator.mozHour12 that can take true/false/undefined values and that nicely fits into Intl API:

(new Date()).toLocaleString(navigator.languages, {
  hour12: navigator.mozHour12,
  hour: 'numeric',
  minute: 'numeric'
});

When "use default" is used, mozHour is undefined and Intl uses the default hour12 value for the given locale. If mozHour is specified to either true or false, Intl API follows that.

There's also an event associated with it: timeformatchange that is dipatched on window.

@zbraniecki
Copy link
Author

There a several similar preferences that the API should either expose now, or be able to add in the future - timezone selection manual/automatic, showing/hiding dayperiod (am/pm) for 12h clock, showing/hiding seconds etc.

@annevk
Copy link
Member

annevk commented Sep 21, 2015

This is out-of-scope for DOM. I recommend filing this against https://github.com/whatwg/html.

@annevk annevk closed this as completed Sep 21, 2015
@zbraniecki
Copy link
Author

ugh, sorry! Filed in HTML: whatwg/html#171

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants