diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-05-19 07:35:06 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-05-19 07:35:06 +0000 |
| commit | 5ea1687a67685fe34875967075bbd422b2d0137a (patch) | |
| tree | 155b8770576ed940325eaee49a9d8373406020b3 /frontends/php/js | |
| parent | 50e982514eb5eb2b27af48658ad4375dbd443b84 (diff) | |
| download | zabbix-5ea1687a67685fe34875967075bbd422b2d0137a.tar.gz zabbix-5ea1687a67685fe34875967075bbd422b2d0137a.tar.xz zabbix-5ea1687a67685fe34875967075bbd422b2d0137a.zip | |
-[DEV-137] fixes for oracle (Artem)
-[HAN-4] selects first host-group in overview screen (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5707 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/js')
| -rw-r--r-- | frontends/php/js/common.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/php/js/common.js b/frontends/php/js/common.js index d6fa5129..68fc5a86 100644 --- a/frontends/php/js/common.js +++ b/frontends/php/js/common.js @@ -22,12 +22,14 @@ var IE = (agt.indexOf("msie") != -1) && document.all && !OP; var SF = (agt.indexOf("safari") != -1); var KQ = (agt.indexOf("khtml") != -1) && (!SF); var GK = (agt.indexOf("gecko") != -1) && !KQ && !SF; +var MC = (agt.indexOf('mac') != -1) function checkBrowser(){ if(OP) SDI('Opera'); if(IE) SDI('IE'); if(SF) SDI('Safari'); if(KQ) SDI('Konqueror'); + if(MC) SDI('Mac'); return 0; } |
