(message)
| 381 | getHolidays.cache = {}; |
| 382 | |
| 383 | function warn(message) { |
| 384 | if($.type(window.console) == 'object' && $.type(window.console.warn) == 'function') { |
| 385 | window.console.warn('[Bootstrap-Calendar] ' + message); |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | function Calendar(params, context) { |
| 390 | this.options = $.extend(true, {position: {start: new Date(), end: new Date()}}, defaults, params); |
no outgoing calls
no test coverage detected