Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var version = '1.0.0';
  2. var cVersion = version == getCookie("version");
  3. if(!cVersion) {
  4. setCookie("version", version, 1000);
  5. window.location.reload(true);
  6. }
  7.  
  8. function getCookie(cname) {
  9. var name = cname + "=";
  10. var decodedCookie = decodeURIComponent(document.cookie);
  11. var ca = decodedCookie.split(';');
  12. for(var i = 0; i < ca.length; i++) {
  13. var c = ca[i];
  14. while (c.charAt(0) == ' ') {
  15. c = c.substring(1);
  16. }
  17. if (c.indexOf(name) == 0) {
  18. return c.substring(name.length, c.length);
  19. }
  20. }
  21. return "";
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement