aboutsummaryrefslogtreecommitdiff
path: root/public/js/fullcalendar/packages/moment-timezone/index.global.js
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-12-23 21:34:47 +0100
committerpolo <ordipolo@gmx.fr>2025-12-23 21:34:47 +0100
commit4f734e0f374428be6424faee0a56458d4fa80396 (patch)
treea6fbc52f230a0f048be4ab2db8ac47cfa974f993 /public/js/fullcalendar/packages/moment-timezone/index.global.js
parent833edf6f21aab07dcd0a8d0de9e002c483deed0e (diff)
downloadcms-4f734e0f374428be6424faee0a56458d4fa80396.tar.gz
cms-4f734e0f374428be6424faee0a56458d4fa80396.tar.bz2
cms-4f734e0f374428be6424faee0a56458d4fa80396.zip
installation de fullcalendar avec composer et CDN au lieu de GIT
Diffstat (limited to 'public/js/fullcalendar/packages/moment-timezone/index.global.js')
-rw-r--r--public/js/fullcalendar/packages/moment-timezone/index.global.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/public/js/fullcalendar/packages/moment-timezone/index.global.js b/public/js/fullcalendar/packages/moment-timezone/index.global.js
deleted file mode 100644
index 3f72e00..0000000
--- a/public/js/fullcalendar/packages/moment-timezone/index.global.js
+++ /dev/null
@@ -1,35 +0,0 @@
1/*!
2FullCalendar Moment Timezone Plugin v6.1.17
3Docs & License: https://fullcalendar.io/docs/moment-timezone-plugin
4(c) 2024 Adam Shaw
5*/
6FullCalendar.MomentTimezone = (function (exports, core, moment, internal) {
7 'use strict';
8
9 function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
10
11 var moment__default = /*#__PURE__*/_interopDefault(moment);
12
13 class MomentNamedTimeZone extends internal.NamedTimeZoneImpl {
14 offsetForArray(a) {
15 return moment__default["default"].tz(a, this.timeZoneName).utcOffset();
16 }
17 timestampToArray(ms) {
18 return moment__default["default"].tz(ms, this.timeZoneName).toArray();
19 }
20 }
21
22 var plugin = core.createPlugin({
23 name: '@fullcalendar/moment-timezone',
24 namedTimeZonedImpl: MomentNamedTimeZone,
25 });
26
27 core.globalPlugins.push(plugin);
28
29 exports["default"] = plugin;
30
31 Object.defineProperty(exports, '__esModule', { value: true });
32
33 return exports;
34
35})({}, FullCalendar, moment, FullCalendar.Internal);