Guest User

Untitled

a guest
Dec 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var hrefSplit = window.location.href.split("?", 2);
  2.           var domian = hrefSplit[0];
  3.           var file = hrefSplit[1];
  4.  
  5.           if (file) {
  6.             if (file.match(/^[a-z0-9+\/=]+$/i)) {
  7.               file = b64_to_utf8(file);
  8.             } else {
  9.               // Hide the link in the url
  10.               window.location.href = domian + '?' + utf8_to_b64(file);
  11.             }
  12.           } else {
  13.             file = 'koalas0.jpg';
  14.           }
Add Comment
Please, Sign In to add comment