diff options
Diffstat (limited to 'httemplate/docs')
-rw-r--r-- | httemplate/docs/credits.html | 5 |
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; |