I am using datetimepicker.js.
I have the following code:
Partial HTML:
<div ng-hide="editingData[x.date]">{{x.date|date}} </div>
So my date is coming as:
May 21, 2015 2:52:29 PM
Expected:
May 21, 2015 2:52:29 PM IST
So Is there any easy way to add timezone in angularjs ?
I am having moment.js included as well and found that it can manipulate dates well. Can it be helpful ?