Initial commit of the js Files + Changes to README

This commit is contained in:
matthias
2014-11-08 15:42:50 +01:00
parent c38225d6ed
commit 10f83dfd89
3 changed files with 175 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
/* See the README or send me a mail if you need help to get this one running :-) */
var buildICSEntry = function( javascriptExampleDateObject ){
var calEntry = icsFormatter();
var title = 'sometitlestring';
var place = 'our secret meeting place';
var begin = new Date(javascriptExampleDateObject);
var end = new Date(Beginn.getTime() + 30*60000);
var description = 'A very long and boring description of what is the agenda of this super exclusiv pow-wow';
calEntry.addEvent(title,description, place, begin.toUTCString(), begin.toUTCString());
calEntry.download('ourSecretMeeting');
}