Nicolas Noullet

Results 14 comments of Nicolas Noullet

Hi, I tried to track down the origin of this issue. It seems to come from https://github.com/angular-ui/bootstrap/blob/997813f0eba41971c948d0ea4c9c9c21542bccd7/src/datepickerPopup/popup.js#L336 In UIBS 1.3.x the conversion was `dateParser.toTimezone(...)` and it is now `dateParser.fromTimezone(...)` in...

I mistakenly believed that my issue had the same root as you @msosa, but it seems to be a third Timezone issue, independent from yours, sorry for the confusion...

You'll find below how I found and solved my issues, hope this will help! **Problem** The **popover** version of uib-datepicker doesn't work well in combination with `ng-model-options` timezone in some...

Had the same issue, so I digged a bit. I found that under the hood, this library calls a RN built-in global error handling utility: ```javascript global.ErrorUtils.setGlobalHandler(customHandler) ``` That means...