ftm

Results 8 comments of ftm

This is something we'll consider supporting and adding to the documentation, however currently `SelectField` does not directly support `Enum`. In the meantime, it's possible to use them by converting the...

The CI is failing due to the issues fixed in #541. If you rebase your branch off of the current `master` you should receive all the necessary changes.

If nothing uses it, I think the `option_widget` parameter should be removed as unless I'm mistaken there's nothing else you can use other than `` which is the default.

@revelt Yeah I think once #21 is sorted out then we should be able to do this

It seems the [`language-mustache`](https://github.com/atom/language-mustache) package was written by the Atom core team and they seem to manage this quite well: ![screenshot at 2017-10-27 15 50 51](https://user-images.githubusercontent.com/3003251/32110213-e4680760-bb2e-11e7-954c-c1924116cac1.png) I'm not sure if...

Not currently, however it doesn't seem like it would be too difficult to support offsets like "+05:00", see documentation [here](https://momentjs.com/docs/#/manipulating/utc-offset/), but if you wanted to be able to set things...

Using moment-timezone seems simple enough: ``` javascript var moment = require('moment-timezone') var timezone = "America/New_York" var locale = "en" var format = "h:mm a Z" var timeLocal = moment().locale(locale).format(format) var...

Perhaps a checkbox in the settings to toggle between local time and UTC or maybe allow the user to click the time to toggle it between UTC and local time?...