Subversion Repositories SmartDukaan

Rev

Rev 23946 | Rev 24016 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23946 Rev 23995
Line 386... Line 386...
386
	});
386
	});
387
});
387
});
388
 
388
 
389
function showPosition(position) {
389
function showPosition(position) {
390
	var coords = {latitude:position.coords.latitude, longitude:position.coords.longitude}
390
	var coords = {latitude:position.coords.latitude, longitude:position.coords.longitude}
391
	doAjaxRequestWithJsonHandler('partner/location', 'PUT', JSON.stringify(coords), function(){location.reload()});
391
	//doAjaxRequestWithJsonHandler('partner/location', 'PUT', JSON.stringify(coords), function(){location.reload()});
392
}
392
}
393
393