aboutsummaryrefslogtreecommitdiffstats
path: root/js/imgc.js
blob: 88edeb9258c4552d438f54cd7ad0ccf98bae3360 (plain) (blame)
1
2
3
4
5
6
7
8
9
function imgcal_init () {
    $.ajax ({
        type : "GET",
        url : "/gcal/fetchgooglecal",
        success : function (resurl) {
            window.location = resurl;
        }
    });
}