summaryrefslogtreecommitdiff
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
parentedc8c8979403479438d9b6ddc47c4f6214ac6538 (diff)
fixed checkBrowser
-rw-r--r--map.css4
-rw-r--r--map.js5
2 files changed, 5 insertions, 4 deletions
diff --git a/map.css b/map.css
index 5b8926a..bcff2a2 100644
--- a/map.css
+++ b/map.css
@@ -5,13 +5,15 @@
body {
background: black;
+ color: white;
margin: 0;
padding: 0;
}
div.box {
font-size: 8pt;
- background-color: #FFFFFF;
+ background-color: white;
+ color: black;
border: 2px solid #000000;
padding: 8px;
-moz-border-radius: 10px;
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;