search for: return_loc

Displaying 2 results from an estimated 2 matches for "return_loc".

Did you mean: return_block
2010 May 21
0
r83 committed - Making the geocoder pass JSLint
...api); } -} +}; /** * Default Geocode error function */ MapstractionGeocoder.prototype.geocode_error = function(response) { alert("Sorry, we were unable to geocode that address"); -} +}; /** * Default handler for geocode request completion @@ -107,14 +107,14 @@ return_location.country = ""; var place = response.Placemark[0]; - if(place.AddressDetails.Country.AdministrativeArea != null) { + if(place.AddressDetails.Country.AdministrativeArea !== null) { return_location.region = place.AddressDetails.Country.AdministrativeArea.Administrat...
2006 Jan 03
18
Trying to do a simple thing ...
Hi ! I was talking to a seasider and he asked me if it was easy to do the following thing using rails : 1) ask a number to the user 2) ask a second number 3) give the addition of the two number and a link to be able to replay All these things have to be done in one controller and one action, there is no need for verification and other stuff. I tried but I''ve got some problems