Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. function getWidth() {
  2. return Math.max(
  3. document.body.scrollWidth,
  4. document.documentElement.scrollWidth,
  5. document.body.offsetWidth,
  6. document.documentElement.offsetWidth,
  7. document.documentElement.clientWidth
  8. );
  9. }
  10.  
  11. if (getWidth() < 750) {
  12. gremi.advert.modify({
  13. advertId: document.currentScript.parentNode.id,
  14. scale: false, // change to 'true' to enable advert scaling
  15. height: 300, // change to original ad height if you enabled scaling
  16. width: 750, // change to original ad width if you enabled scaling
  17. addLabel: true, // change to 'false' if you want to remove 'REKLAMA' label
  18. addMargins: true, // change to 'false' if ad should take no space on site by default
  19. remove: false // change to true to remove any trace of placement from site
  20. });
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement