Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. addIframeMask: function(c) {
  2. if (dnn.dom.browser.isType("ie") && (c.previousSibling == null || c.previousSibling.nodeName.toLowerCase() != "iframe")) {
  3. var a = document.createElement("iframe");
  4. c.parentNode.insertBefore(a, c);
  5. var b = c.getBoundingClientRect();
  6. a.style.position = "absolute";
  7. a.style.left = c.offsetLeft + "px";
  8. a.style.top = c.offsetTop + "px";
  9. a.style.width = b.width + "px";
  10. a.style.height = b.height + "px";
  11. a.style.opacity = "0";
  12. a.style.zIndex = "-1";
  13. return a
  14. }
  15. return null
  16. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement