Source: calendar.js

(
/**
* Contains the functionality related to the calendar page.
*
* @module calendar
* @author Joonas Konki
* @author Anu Koskela
* @author Mikko Kuhno
* @author Henrik Paananen
* @author Atte Räty
* @license BSD 3-clause, see LICENSE for more details.
* @copyright 2015 Kepler project authors
*/
function(){

/**
* This is executed after the HTML page has been loaded.
* This is a common procedure of all of the client-side modules to
* initialise the page content.
*
* @memberof module:calendar
*/
function doc_ready(){
    initDefaultCal();
}

$(document).ready(doc_ready);
}());