diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 13:45:51 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 13:45:51 +0100 |
commit | 89865cb8a0ca668f628e6e3e6a43bca7e72eab63 (patch) | |
tree | c19925c96dd0ed45f39e8bc16bccd49e4e92703a /apps/calendar/js/geo.js | |
parent | 92c7b2717d4cff555ac8037b2b7dc5c59a79f493 (diff) | |
download | nextcloud-server-89865cb8a0ca668f628e6e3e6a43bca7e72eab63.tar.gz nextcloud-server-89865cb8a0ca668f628e6e3e6a43bca7e72eab63.zip |
stop using 3rdparty services for timezone detection
Diffstat (limited to 'apps/calendar/js/geo.js')
-rwxr-xr-x | apps/calendar/js/geo.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/calendar/js/geo.js b/apps/calendar/js/geo.js index c9cc5dd0955..7018c6298a2 100755 --- a/apps/calendar/js/geo.js +++ b/apps/calendar/js/geo.js @@ -10,7 +10,6 @@ if (navigator.geolocation) { function(data){ if (data.status == 'success' && typeof(data.message) != 'undefined'){ $('#notification').html(data.message); - $('#notification').attr('title', 'CC BY 3.0 by Geonames.org'); $('#notification').slideDown(); window.setTimeout(function(){$('#notification').slideUp();}, 5000); }else{ |