3

The latest version of Stripe checkout looks to be buggy. I'm getting

Uncaught TypeError: Cannot read property 'precision' of null on Stripe Checkout

On my checkout code. It's the same error on their tutorial page https://stripe.com/docs/tutorials/checkout

It's on this line:

function Geolocation(){}
Geolocation.prototype.setLocation=function(loc){
   this.precision=loc.precision;
...

This is on Chrome/Mac and Chrome/Linux... anyone else seeing it?

Steven P
  • 1,956
  • 1
  • 16
  • 17

1 Answers1

2

I work on Stripe Checkout. We introduced a bug related to geolocating specific IP addresses at 00:34UTC and fixed it at 16:19UTC. It appears to have affected 49 users from a specific IP range over that period. Sorry for the trouble!

narced133
  • 712
  • 4
  • 7
  • Thanks narced133. All sorted now. Still, it makes me nervous having to reference the stripe checkout (or any 3rd party library) from your domain, rather than pinning on a known working version for this very reason. – Steven P Aug 09 '15 at 01:29