summaryrefslogtreecommitdiffstats
path: root/apps/calendar/js/geo.js
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-02-26 13:45:51 +0100
committerGeorg Ehrke <dev@georgswebsite.de>2012-02-26 13:45:51 +0100
commit89865cb8a0ca668f628e6e3e6a43bca7e72eab63 (patch)
treec19925c96dd0ed45f39e8bc16bccd49e4e92703a /apps/calendar/js/geo.js
parent92c7b2717d4cff555ac8037b2b7dc5c59a79f493 (diff)
downloadnextcloud-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-xapps/calendar/js/geo.js1
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{