Using angular-moment and simply trying to add a date based on one supplied. Angular-moment is loading, but nothing happening. Here is my snipet:
<div class="beneFooter" style="clear: both;">
<p><span>Last day to submit order for {{ item.lastUpdateDay|amAdd : '1' : 'MMMM' }}</span> <span style="float: right; padding-right: 10px;">{{ item.lastUpdateDay|date : 'MM/dd/yyyy' }}</span></p>
</div>
Seems I should be able to simply use amAdd as I have and add '1' to show the following month. End result is, if my JSON object property shows todays date, using moment and angular-moment, I simply want to return October sine todays date is in September.
Last day to submit order for {{ item.lastUpdateDay|amAdd : '1' : 'month' | amDateFormat : 'MMMM' }} {{ item.lastUpdateDay|date : 'MM/dd/yyyy' }}