summaryrefslogtreecommitdiff
path: root/webapp/cao-config.js
blob: 2082e3a9e4437b9fed063d9d3cff489cf33a0017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$(document).ready(function() {
    var lang;
    var hostname = document.location.hostname;

    /* XXX replace this with your desired behaviour */
    if (hostname.startsWith('fr.')) {
        lang = 'fr';
    } else if (hostname.startsWith('en.')) {
        lang = 'en';
    }

    cao.set_lang(lang);
});