From 31a11bace3b5c407f89f59805b80469abe8a581c Mon Sep 17 00:00:00 2001 From: TheTroll Date: Thu, 18 Mar 2010 17:27:48 +0100 Subject: cleanup --- extensions/.svn/text-base/jqt.location.js.svn-base | 68 ---------------------- 1 file changed, 68 deletions(-) delete mode 100644 extensions/.svn/text-base/jqt.location.js.svn-base (limited to 'extensions/.svn/text-base/jqt.location.js.svn-base') diff --git a/extensions/.svn/text-base/jqt.location.js.svn-base b/extensions/.svn/text-base/jqt.location.js.svn-base deleted file mode 100644 index a944953..0000000 --- a/extensions/.svn/text-base/jqt.location.js.svn-base +++ /dev/null @@ -1,68 +0,0 @@ -/* - - _/ _/_/ _/_/_/_/_/ _/ - _/ _/ _/ _/_/ _/ _/ _/_/_/ _/_/_/ - _/ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ - _/ _/_/ _/ _/ _/_/ _/_/_/ _/_/_/ _/ _/ - _/ - _/ - - Created by David Kaneda - Documentation and issue tracking on Google Code - - Special thanks to Jonathan Stark - and pinch/zoom - - (c) 2009 by jQTouch project members. - See LICENSE.txt for license. - -*/ - -(function($) { - if ($.jQTouch) - { - $.jQTouch.addExtension(function Location(){ - - var latitude, longitude, callback; - - function checkGeoLocation() { - return navigator.geolocation; - } - function updateLocation(fn) { - if (checkGeoLocation()) - { - callback = fn; - navigator.geolocation.getCurrentPosition(savePosition); - return true; - } else { - console.log('Device not capable of geo-location.'); - fn(false); - return false; - } - } - function savePosition(position) { - latitude = position.coords.latitude; - longitude = position.coords.longitude; - if (callback) { - callback(getLocation()); - } - } - function getLocation() { - if (latitude && longitude) { - return { - latitude: latitude, - longitude: longitude - } - } else { - console.log('No location available. Try calling updateLocation() first.'); - return false; - } - } - return { - updateLocation: updateLocation, - getLocation: getLocation - } - }); - } -})(jQuery); \ No newline at end of file -- cgit v1.2.3