Make easy eslint fixes to links.js
This commit is contained in:
parent
258ec41f90
commit
10c667e42c
1 changed files with 17 additions and 17 deletions
|
@ -6,10 +6,10 @@ var ytidregex = /watch\?v=([A-Za-z0-9\-_]+)/;
|
|||
|
||||
//grab the notes and loop through them
|
||||
var notes = document.querySelectorAll('.e-content');
|
||||
for(var i = 0; i < notes.length; i++) {
|
||||
for (var i = 0; i < notes.length; i++) {
|
||||
//get Youtube ID
|
||||
var ytid = notes[i].textContent.match(ytidregex);
|
||||
if(ytid !== null) {
|
||||
if (ytid !== null) {
|
||||
var id = ytid[1];
|
||||
var iframe = document.createElement('iframe');
|
||||
iframe.classList.add('youtube');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue