UNPKG

276 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var enGb = {
5 code: "en-gb",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4th is the first week of the year.
9 }
10 };
11
12 return enGb;
13
14}());