Guest User

Untitled

a guest
Nov 1st, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. pasteCatcher = document.createElement("div");
  2. pasteCatcher.setAttribute("id", "paste_ff");
  3. pasteCatcher.setAttribute("contenteditable", "");
  4. pasteCatcher.style.cssText = 'opacity:0;position:fixed;top:0px;left:0px;';
  5. pasteCatcher.style.marginLeft = "-20px";
  6. document.body.appendChild(pasteCatcher);
  7. document.getElementById('paste_ff').addEventListener('DOMSubtreeModified',function()
  8. {
  9. if(pasteCatcher.children.length == 1)
  10. {
  11. var img = pasteCatcher.firstElementChild.src;
  12.  
  13. var img2 = new Image();
  14. img2.onload = function()
  15. {
  16. new_whiteboard.paste_image(img2);
  17. }
  18. img2.src = img;
  19. pasteCatcher.innerHTML = '';
  20. }
  21. },false);
Advertisement
Add Comment
Please, Sign In to add comment