exside / geo-location-javascript

Automatically exported from code.google.com/p/geo-location-javascript
0 stars 0 forks source link

N97 does not work because of small mistake in code #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

This line:

   else if (typeof(Mojo.Service.Request)!="Mojo.Service.Request")

Generally breaks N97 devices - because Mojo is undefined, Service generating 
error that throws out function outside. This makes N97 not initialising 
properly. Easy fix:

   else if (typeof(Mojo)!="undefined" && typeof (Mojo.Service)!="undefined" 
&& typeof(Mojo.Service.Request)!="Mojo.Service.Request")

Original issue reported on code.google.com by wil...@gmail.com on 3 Nov 2009 at 11:20

GoogleCodeExporter commented 9 years ago
thanks very much adding that!

(sorry for the delay, google changed the email notification and i didn't get any
notification)

Original comment by whoiss...@gmail.com on 3 Nov 2009 at 6:48

GoogleCodeExporter commented 9 years ago

Original comment by whoiss...@gmail.com on 3 Nov 2009 at 7:13