Is there a way to adjust the datepicker settings on https://angular-ui.github.io/bootstrap/#/datepicker so that it can accept dates in non-US format without switching the day and month values?
For instance, if I input '1 2 2015', I want it to display as '1st February 2015' instead of '2nd January 2015'. Changing the datepicker-popup value to
datepicker-popup="dd MMM yy"
allows input like '1 Feb 2015' to work correctly, but it's not exactly what I need.
You can test this out at https://angular-ui.github.io/bootstrap/#/datepicker by entering '1 2 2015' into the 'Popup' field.