{
"De verjaardag van ": "",
@@ -158,7 +158,7 @@ The following properties can be configured:
broadcastEvents |
If this property is set to true, the calendar will broadcast all the events to all other modules with the notification message: CALENDAR_EVENTS . The event objects are stored in an array and contain the following fields: title , startDate , endDate , fullDayEvent , location and geo .
Possible values: true , false
- Default value: true
+ Default value: true
|
diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
index 3e0a0985..b636b30b 100644
--- a/modules/default/calendar/calendar.js
+++ b/modules/default/calendar/calendar.js
@@ -388,7 +388,7 @@ Module.register("calendar", {
/* broadcastEvents()
* Broadcasts the events to all other modules for reuse.
- * The all events available in one array, sorted on startdate.
+ * The all events available in one array, sorted on startdate.
*/
broadcastEvents: function () {
var eventList = [];
diff --git a/modules/default/calendar/debug.js b/modules/default/calendar/debug.js
index d52cdc9f..9b72d51d 100644
--- a/modules/default/calendar/debug.js
+++ b/modules/default/calendar/debug.js
@@ -1,5 +1,5 @@
/* CalendarFetcher Tester
- * use this script with `node debug.js` to test the fetcher without the need
+ * use this script with `node debug.js` to test the fetcher without the need
* of starting the MagicMirror core. Adjust the values below to your desire.
*
* By Michael Teeuw http://michaelteeuw.nl
@@ -30,4 +30,3 @@ fetcher.onError(function(fetcher, error) {
fetcher.startFetch();
console.log("Create fetcher done! ");
-
diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js
index 4455b15a..c84c133e 100644
--- a/modules/default/clock/clock.js
+++ b/modules/default/clock/clock.js
@@ -220,7 +220,7 @@ Module.register("clock",{
wrapper.appendChild(digitalWrapper);
} else {
analogWrapper.style.padding = "20px 0 0 0";
- wrapper.appendChild(digitalWrapper);
+ wrapper.appendChild(digitalWrapper);
wrapper.appendChild(analogWrapper);
}
}
diff --git a/modules/default/compliments/README.md b/modules/default/compliments/README.md
index ac410d30..430c4fbf 100644
--- a/modules/default/compliments/README.md
+++ b/modules/default/compliments/README.md
@@ -57,7 +57,7 @@ The following properties can be configured:
- remoteFile |
+ remoteFile |
External file from which to load the compliments
Possible values:Path to a JSON file containing compliments, configured
as per the value of the compliments configuration (see below). An object with three arrays:
@@ -136,7 +136,7 @@ config: {
### External Compliment File
You may specify an external file that contains the three compliment arrays. This is particularly useful if you have a
large number of compliments and do not wish to crowd your `config.js` file with a large array of compliments.
-Adding the `remoteFile` variable will override an array you specify in the configuration file.
+Adding the `remoteFile` variable will override an array you specify in the configuration file.
This file must be straight JSON. Note that the array names need quotes
around them ("morning", "afternoon", "evening", "snow", "rain", etc.).
diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js
index b42ef12a..e92550ea 100644
--- a/modules/default/currentweather/currentweather.js
+++ b/modules/default/currentweather/currentweather.js
@@ -37,7 +37,7 @@ Module.register("currentweather",{
onlyTemp: false,
roundTemp: false,
-
+
iconTable: {
"01d": "wi-day-sunny",
"02d": "wi-day-cloudy",
diff --git a/modules/default/newsfeed/README.md b/modules/default/newsfeed/README.md
index 21d3910e..58c7b9ae 100644
--- a/modules/default/newsfeed/README.md
+++ b/modules/default/newsfeed/README.md
@@ -113,13 +113,13 @@ The following properties can be configured:
removeEndTags: false,
startTags: [],
endTags: []
-
-
+
+
|
removeStartTags |
Some newsfeeds feature tags at the beginning of their titles or descriptions, such as [VIDEO].
This setting allows for the removal of specified tags from the beginning of an item's description and/or title.
- Possible values:'title' , 'description' , 'both'
+ Possible values:'title' , 'description' , 'both'
|
@@ -131,7 +131,7 @@ The following properties can be configured:
removeEndTags |
Remove specified tags from the end of an item's description and/or title.
- Possible values:'title' , 'description' , 'both'
+ Possible values:'title' , 'description' , 'both'
|
@@ -173,7 +173,7 @@ The `feeds` property contains an array with multiple objects. These objects have
The encoding of the news feed.
This property is optional.
Possible values:'UTF-8' , 'ISO-8859-1' , etc ...
- Default value: 'UTF-8'
+ Default value: 'UTF-8'
|
diff --git a/modules/default/newsfeed/newsfeed.js b/modules/default/newsfeed/newsfeed.js
index 32fdabdf..74014208 100644
--- a/modules/default/newsfeed/newsfeed.js
+++ b/modules/default/newsfeed/newsfeed.js
@@ -29,7 +29,7 @@ Module.register("newsfeed",{
removeEndTags: "",
startTags: [],
endTags: []
-
+
},
// Define required scripts.
@@ -112,17 +112,17 @@ Module.register("newsfeed",{
//Remove selected tags from the beginning of rss feed items (title or description)
if (this.config.removeStartTags == "title" || "both") {
-
+
for (f=0; f