summaryrefslogtreecommitdiff
path: root/map.js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@ffgraz.net>2008-12-05 14:34:41 +0000
committerChristian Pointner <equinox@ffgraz.net>2008-12-05 14:34:41 +0000
commit3578b0207d1df6573709a7d63d20ba9a4ef5e038 (patch)
tree96835ed0b522c5e2752cc2d6c66baec5b3e2e9f6 /map.js
parentedc8c8979403479438d9b6ddc47c4f6214ac6538 (diff)
fixed checkBrowser
Diffstat (limited to 'map.js')
-rw-r--r--map.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/map.js b/map.js
index 718de7c..5a6a785 100644
--- a/map.js
+++ b/map.js
@@ -50,9 +50,8 @@ function checkBrowser() {
if (GBrowserIsCompatible()) {
return true;
} else {
- var html = '<center><h3 style="color:red">';
- html += 'Dein Browser ist leider nicht kompatibel mit der Google Maps API!</h3>';
- html += 'Ich w�rde vorschlagen du surfst auf: '
+ var html = '<center><h3 style="color:red">Dein Browser ist leider nicht kompatibel mit der Google Maps API!</h3>';
+ html += 'Ich würde vorschlagen du surfst auf: '
html += '<a href="http://www.mozilla.com/firefox/">http://www.mozilla.com/firefox/</a></center>';
document.getElementById("map").innerHTML = html;
return false;