We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359e1a9 commit 2fedcd9Copy full SHA for 2fedcd9
src/calendar.js
@@ -208,11 +208,11 @@ angular.module('ui.calendar', [])
208
209
fullCalendarConfig = controller.getFullCalendarConfig(calendarSettings, uiCalendarConfig);
210
211
- var localeConfig = controller.getLocaleConfig(fullCalendarConfig);
212
- angular.extend(fullCalendarConfig, localeConfig);
+ var localeFullCalendarConfig = controller.getLocaleConfig(fullCalendarConfig);
+ angular.extend(localeFullCalendarConfig, fullCalendarConfig);
213
214
options = { eventSources: sources };
215
- angular.extend(options, fullCalendarConfig);
+ angular.extend(options, localeFullCalendarConfig);
216
217
var options2 = {};
218
for(var o in options){
0 commit comments