Advertisement
Shrooms

supreme captcha

May 6th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. ;
  2. (function() {
  3. function findCaptcha() {
  4. return document.querySelector('.g-recaptcha') || document.getElementById('g-recaptcha');
  5. }
  6. function completeCaptch(intervalID) {
  7. intervalID = setInterval(function() {
  8. if (findCaptcha() != null) {
  9. findCaptcha()
  10. .remove();
  11. clearInterval(intervalID);
  12. }
  13. }, 200);
  14. }
  15. var loadedID = null;
  16. if (location.hash === '#checkout' || location.pathname === '/checkout') {
  17. completeCaptch(loadedID);
  18. }
  19. var stateID = null;
  20. window.addEventListener('popstate', function(event) {
  21. stateID = null;
  22. clearInterval(stateID);
  23. if (location.hash === '#checkout' || location.pathname === '/checkout') {
  24. completeCaptch(stateID);
  25. }
  26. }, false);
  27. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement