commit
This commit is contained in:
+4
-1
@@ -258,7 +258,10 @@
|
||||
for(var i = 0;i < lines.length;i++){
|
||||
var podcastInfo = lines[i].split(';');
|
||||
const podcastTitle = document.createTextNode(lines[i]);
|
||||
podcastDiv.appendChild('<p>' + podcastInfo[0] + '</p>');
|
||||
|
||||
const node = document.createElement("p");
|
||||
node.appendChild(podcastTitle);
|
||||
podcastDiv.appendChild(node);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user