summaryrefslogtreecommitdiff
path: root/html/layout/js/geckostyle.js
blob: a736f7c34cb7bd67a9e26f5e5a059d8901c059e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
function isGecko() {
    var agent = navigator.userAgent.toLowerCase();
    if (agent.indexOf("gecko") != -1) {
        return true;
    }
    return false;
}

if (isGecko()) {
      document.write('<style type="text/css" media="screen">@import "/layout/css/blue/geckofixes.css";</style>\n');
}