summaryrefslogtreecommitdiff
path: root/httemplate/docs
diff options
context:
space:
mode:
authorivan <ivan>2008-04-02 04:32:05 +0000
committerivan <ivan>2008-04-02 04:32:05 +0000
commit3e463d4d9f8bae75c37e9ba6c94a3ed6abbb1860 (patch)
tree928aa9e08c0a7a24850402042559e3ca4240c99b /httemplate/docs
parent12c2362c84bea9f2e03ed9c67b2de8d453202ebf (diff)
slight browser adjustments and DONE
Diffstat (limited to 'httemplate/docs')
-rw-r--r--httemplate/docs/credits.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/docs/credits.html b/httemplate/docs/credits.html
index 306f858fd..9d4c5e96f 100644
--- a/httemplate/docs/credits.html
+++ b/httemplate/docs/credits.html
@@ -156,9 +156,12 @@ var startingPosition = 360;
//huh, adjust for firefox
var ua = navigator.userAgent;
var opera = /opera [56789]|opera\/[56789]/i.test(ua);
-var moz = !opera && /gecko/i.test(ua);
+var webkit = /webkit/i.test(ua)
+var moz = !opera && !webkit && /gecko/i.test(ua);
if ( moz ) {
startingPosition += 20;
+} else if ( opera ) {
+ startingPosition += 21;
}
var documentYposition = startingPosition;