Revert calendar default value and add documentation

This commit is contained in:
Andreas 2016-12-13 17:16:46 +01:00
parent 6c1dbc5e61
commit de71b1b397
2 changed files with 11 additions and 1 deletions

View File

@ -109,6 +109,13 @@ The following properties can be configured:
<code> <code>
titleReplace: {'Birthday of ' : '', 'foo':'bar'} titleReplace: {'Birthday of ' : '', 'foo':'bar'}
</code> </code>
<br><b>Default value:</b>
<code>
{
"De verjaardag van ": "",
"'s birthday": ""
}
</code>
</td> </td>
</tr> </tr>
<tr> <tr>

View File

@ -32,7 +32,10 @@ Module.register("calendar", {
url: "http://www.calendarlabs.com/templates/ical/US-Holidays.ics", url: "http://www.calendarlabs.com/templates/ical/US-Holidays.ics",
}, },
], ],
titleReplace: {}, titleReplace: {
"De verjaardag van ": "",
"'s birthday": ""
},
broadcastEvents: true broadcastEvents: true
}, },