gestion des demandes d'évolution pour le centre kalachakra non géré dans les module booking et opendons
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

41 lines
1016 B

/**
* @fileoverview The entry file of fullcalendar
* @author NHN FE Development Lab
*/
'use strict';
var util = require('tui-code-snippet');
var Calendar = require('./js/factory/calendar');
require('./css/main.styl');
require('./js/view/template/helper');
// for jquery
if (global.jQuery) {
global.jQuery.fn.tuiCalendar = function() {
var options, instance;
var el = this.get(0);
var args = Array.prototype.slice.apply(arguments);
if (el) {
options = util.pick(args, 0) || {};
instance = global.jQuery.data(el, 'tuiCalendar');
if (instance) {
if (typeof options === 'string' && instance[options]) {
return instance[options].apply(instance, args.slice(1));
}
} else {
instance = new Calendar(el, options);
global.jQuery.data(el, 'tuiCalendar', instance);
}
}
return this;
};
}
module.exports = Calendar;