Guest User

Untitled

a guest
Apr 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function(h) {
  2. var html = "<div id='REPLACE-ME-video' class='swfembed' movie='URL' mheight='HEIGHT' mwidth='WIDTH'>Witty comment about needing Javascript goes here...</div>";
  3. var sel = h.selection;
  4. if (null == sel || '' == sel.toString()) {
  5. return html;
  6. }
  7.  
  8. html = html.replace('WIDTH', /width="(\d+)"/.exec(sel)[1]);
  9. html = html.replace('HEIGHT', /height="(\d+)"/.exec(sel)[1]);
  10. html = html.replace('URL', /src="([^\"]+)"/.exec(sel)[1]);
  11. return html;
  12. }
Add Comment
Please, Sign In to add comment