summaryrefslogtreecommitdiff
path: root/doc/site.js
blob: f7cb7435a0a05b49661183c0e5e200ec271dd170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
switch(window.location.protocol) {
    case 'http:':
    case 'https:':
        // remote file
        document.getElementById("searchSite").style.display = "block";
        break;
    case 'file:':
        // local file
        document.getElementById("searchSite").style.display = "none";
        break;
    default:

    break;
}