You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.
…bject. Part of #236
BREAKING CHANGE:
`calendarConfig` is now just a plain angular value. The helper methods were removed and now you directly set the properties on a plain object.
Before:
```
.config(function(calendarConfigProvider) {
calendarConfigProvider.setDateFormatter('moment');
});
```
After:
```
.config(function(calendarConfig) {
calendarConfig.dateFormatter = 'moment';
});
```
The text was updated successfully, but these errors were encountered: