fixed linting issues

This commit is contained in:
Jeremias Arnstadt 2017-01-29 00:59:38 +01:00
parent bc257f4951
commit 5c0b04bfc8
2 changed files with 17 additions and 17 deletions

View File

@ -117,7 +117,7 @@ Module.register("calendar", {
var eventWrapper = document.createElement("tr"); var eventWrapper = document.createElement("tr");
if (this.config.colored) { if (this.config.colored) {
eventWrapper.style.cssText = 'color:' + this.colorForUrl(event.url); eventWrapper.style.cssText = "color:" + this.colorForUrl(event.url);
} }
eventWrapper.className = "normal"; eventWrapper.className = "normal";
@ -351,7 +351,7 @@ Module.register("calendar", {
} }
} }
return '#fff'; return "#fff";
}, },
/* countTitleForUrl(url) /* countTitleForUrl(url)
* Retrieves the name for a specific url. * Retrieves the name for a specific url.