Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function embedMediaLinks(post) {
- if (!Cfg['addMedia']) {
- return;
- }
- var wh = 'width="' + Cfg['YTubeWidth'] + '" height="' + Cfg['YTubeHeigh'] + '"';
- $('.reply > a[href$=".webm"], div[de-post=""] > a[href$=".webm"], .highlight > a[href$=".webm"]').replaceWith(function () {
- var webm = $(this).attr("href");
- 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>';
- return $(vtag);
- });
- for (i = 0, els = $Q('a[href*="//"]', post || dForm); el = els[i++];) {
- addEmbedPlayers(el, wh);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment