Advertisement
Guest User

Untitled

a guest
Apr 16th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.  
  3.         // console.log('repair start');
  4.  
  5.         var list = document.getElementsByTagName('a');
  6.         for (var index = 0; index < list.length; index++) {
  7.             if (list[index].innerHTML.search('webm') > -1 && list[index].innerHTML.search('img') > -1) {
  8.                 list[index].innerHTML = list[index].innerHTML.replace('img', 'video controls loop');
  9.             }
  10.         }
  11.         // console.log('repair ends');
  12.        
  13.  
  14. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement