diff options
author | Christian Pointner <equinox@ffgraz.net> | 2008-12-05 14:34:41 +0000 |
---|---|---|
committer | Christian Pointner <equinox@ffgraz.net> | 2008-12-05 14:34:41 +0000 |
commit | 3578b0207d1df6573709a7d63d20ba9a4ef5e038 (patch) | |
tree | 96835ed0b522c5e2752cc2d6c66baec5b3e2e9f6 | |
parent | edc8c8979403479438d9b6ddc47c4f6214ac6538 (diff) |
fixed checkBrowser
-rw-r--r-- | map.css | 4 | ||||
-rw-r--r-- | map.js | 5 |
2 files changed, 5 insertions, 4 deletions
@@ -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; @@ -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; |