summaryrefslogtreecommitdiff
path: root/frontend/gamma/js/JQTouch/extensions/jqt.location.js
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:53:34 (UTC)
commit0608e045f6aa471916829468f48082ea07a453f4 (patch) (side-by-side diff)
tree57748b9a76e592ae35b165cd6a203e12493d4044 /frontend/gamma/js/JQTouch/extensions/jqt.location.js
parent074e70457c90344b3c1cb236105638d692a0066b (diff)
downloadclipperz-0608e045f6aa471916829468f48082ea07a453f4.zip
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.gz
clipperz-0608e045f6aa471916829468f48082ea07a453f4.tar.bz2
Removed extra JS libraries no longer used for the mobile version
Diffstat (limited to 'frontend/gamma/js/JQTouch/extensions/jqt.location.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/js/JQTouch/extensions/jqt.location.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/frontend/gamma/js/JQTouch/extensions/jqt.location.js b/frontend/gamma/js/JQTouch/extensions/jqt.location.js
deleted file mode 100644
index 9d53a1a..0000000
--- a/frontend/gamma/js/JQTouch/extensions/jqt.location.js
+++ b/dev/null
@@ -1,51 +0,0 @@
-(function($) {
- if ($.jQTouch)
- {
- $.jQTouch.addExtension(function Location(){
-
- var latitude, longitude, callback, callback2;
-
- function updateLocation(fn, fn2) {
- if (navigator.geolocation)
- {
- callback = fn;
- callback2 = fn2;
- navigator.geolocation.getCurrentPosition(savePosition, failResponse);
- return true;
- } else {
- console.log('Device not capable of geo-location.');
- fn(false);
- return false;
- }
- }
- function failResponse(error){
- if (callback2) {
- callback2(error);
- }
- }
- 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
- };
- });
- }
-})($); \ No newline at end of file