Daniel Talash
Daniel Talash
I have had a look at this problem, and while I was able to get the callback firing without any changes to the library, there appears to be a scoping...
If I understood you correctly, you want to have both an input element and a div element using the same date, and if one is updated then the other should...
I'm either unable to replicate the problem, or I am not understanding what the problem is. See [here for a plunkr](https://plnkr.co/edit/B3Z1YxYvKMpzXzs1335s?p=preview) with my attempt to reproduce your issue. The timezones...
The problem was with the [`mFormat`](https://github.com/g00fy-/angular-datepicker/blob/master/app/scripts/datePicker.js#L25-L32) filter, which completely ignores timezones when passed a non-moment object. [Here](https://plnkr.co/edit/wl4WEUZKJbX06lizdcda?p=preview) is a plunkr with the filter fixed. I will update my current PR...
@eralha and @g00fy-, there appears to be quite some delay with getting PRs merged. Do you guys need anybody to help maintain this repo? I am willing to help.
The issue appears to be with the attributes provided. Firstly, the input `type` is set to `date` which means the browser will try to use its native datepicker element and...
All localization is handled by moment.js. It appears that `Portuguese (Brazil)` is an existing localization, so you do not need to do any translation yourself, just load the appropriate locale...
Looks like the library is functional when used with `data-date-picker`, but the styles are not being applied because they are being targeted at a [`date-picker`](https://github.com/g00fy-/angular-datepicker/blob/master/app/styles/style.less#L37) attribute instead of a class....
Use the timezone `UTC`. For example, ``
It appears to work for me on Chrome/Firefox/IE. Does this [plunkr](https://plnkr.co/edit/4NuoiRac0T37VzTCcfQR?p=preview) work for you?