Guest User

Untitled

a guest
Jul 3rd, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.     function embedMediaLinks(post) {
  3.         if (!Cfg['addMedia']) {
  4.             return;
  5.         }
  6.         var wh = 'width="' + Cfg['YTubeWidth'] + '" height="' + Cfg['YTubeHeigh'] + '"';
  7.         $('.reply > a[href$=".webm"], div[de-post=""] > a[href$=".webm"], .highlight > a[href$=".webm"]').replaceWith(function () {
  8.             var webm = $(this).attr("href");
  9.             var vtag = '<video '+wh+' controls="true" poster="" style="display:inline-block;background-color:black;margin:0 9px;margin-bottom:5px;position:relative;cursor:pointer;z-index:2;"><source src="'+webm+'"></source></video>';
  10.             return $(vtag);
  11.         });
  12.         for (i = 0, els = $Q('a[href*="//"]', post || dForm); el = els[i++];) {
  13.             addEmbedPlayers(el, wh);
  14.         }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment