Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  setTimeout(function(){
  2.     $('.composer-panel').remove();
  3.     $('div[target-selector=".main-container"]').remove();
  4.     $('nav.primary-navbar').remove();
  5.     $('#room-chat-nav').remove();
  6.     $('#room-nav').remove();
  7.     $('body').css('overflow-y', 'scroll');
  8.     $('body').css('height', '10000px');
  9.     $('.story-panel').attr('style', 'height: 100% !important');
  10.     $('#room-main-body').attr('style', 'width: 100% !important');
  11.  
  12.     $('.viewport .content.minimal-content').attr('style', 'top: 100px !important');
  13.  
  14.     $(window).resize(function () {
  15.      setTimeout(function(){
  16.         $('.viewport .content.minimal-content').attr('style', 'top: 100px !important');
  17.       }, 200);
  18.      });
  19.  
  20.     window.print();
  21.  }, 3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement