Fix camel case

master
Emil Miler 3 years ago
parent cc90d008a8
commit af28be8f6f

@ -26,7 +26,7 @@ class Controller {
init(videoToLoad) {
this.loadXml(videoToLoad).then(
function (v) {
this.view.drawCommenttitles(v);
this.view.drawCommentTitles(v);
this.addEventListeners();
this.view.drawCommentsToVideo(v);
}.bind(this)

@ -21,7 +21,7 @@ class View {
); */
}
drawCommenttitles(comments) {
drawCommentTitles(comments) {
let aside = document.getElementsByTagName("aside")[0];
for (let i = 0; i < comments.length; i++) {
@ -49,11 +49,11 @@ class View {
comment.appendChild(time);
let commenttitle = document.createElement("div");
commenttitle.setAttribute("class", "commentText");
commenttitle.innerHTML = comments[i].title;
let commentTitle = document.createElement("div");
commentTitle.setAttribute("class", "commentText");
commentTitle.innerHTML = comments[i].title;
comment.appendChild(commenttitle);
comment.appendChild(commentTitle);
aside.appendChild(comment);

Loading…
Cancel
Save