Guest User

Untitled

a guest
May 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Forcing Opera full page reflow/repaint to fix page draw bugs
  2. function forceOperaRepaint() {
  3. if (window.opera) {
  4. var bs = document.body.style;
  5. bs.position = 'relative';
  6. setTimeout(function() {
  7. bs.position = 'static';
  8. }, 1);
  9. }
  10. }
Add Comment
Please, Sign In to add comment