Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var is_safari = navigator.userAgent.indexOf("Safari") > -1;
  2. var is_chrome = navigator.userAgent.indexOf('Chrome') > -1;
  3. if ((is_chrome) && (is_safari)) {is_safari = false;}
  4. if (is_safari) {
  5. if (!document.cookie.match(/^(.*;)?\s*fixed\s*=\s*[^;]+(.*)?$/)) {
  6. document.cookie = 'fixed=fixed; expires=Tue, 19 Jan 2038 03:14:07 UTC; path=/';
  7. window.location.replace("");
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement