@@ -141,11 +141,15 @@ jQuery(function ($) { | |||
}); | |||
function downloadEvent(){ | |||
var subject = $('#subject').val(); | |||
var description = $('#description').val(); | |||
var description = $('#cl-description').val(); | |||
var location = $('#location').val(); | |||
var begin = $('#start-date').val(); | |||
var end = $('#end-date').val(); | |||
var filename = $('filename').val(); | |||
if(filename==='') | |||
filename= subject; | |||
if(description==='') | |||
description = $('#description').val(); | |||
var cal = ics(); | |||
cal.addEvent(subject, description, location, begin, end); | |||
//cal.addEvent(subject, description, location, begin, end); // yes, you can have multiple events :-) |
@@ -18,11 +18,12 @@ | |||
{{ .Content }} | |||
</div> | |||
<input type="hidden" id="subject" value="{{.Title }}"/> | |||
<input type="hidden" id="description" value="{{ .Params.calendar_description | .Content }}"/> | |||
<input type="hidden" id="cl-description" value="{{ .Params.calendar_description }}"/> | |||
<input type="hidden" id="description" value="{{ .Content }}"/> | |||
<input type="hidden" id="location" value="Kolkata, IN"/> | |||
<input type="hidden" id="start-date" value="{{.Params.event_start_date }}"/> | |||
<input type="hidden" id="end-date" value="{{.Params.event_end_date }}"/> | |||
<input type="hidden" id="filename" value="{{ .Params.calendar_filename | .Title }}"/> | |||
<input type="hidden" id="filename" value="{{ .Params.calendar_filename }}"/> | |||
<button class="clndr btn btn-main" onclick="downloadEvent()"> | |||
<i class="ti-calendar"></i>Block Calender</button> | |||
{{ if site.Params.post_share }} |