X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=experiments%2Fspclient%2Fmkws.js;h=cf2c7dd1bceddf548f6066279ebc528341646f69;hb=db685e95a7dd991aa856a825da483e0b11b7300a;hp=a7fb02a33daf2b2c6fdd161fe7cec8c79bd7d5cf;hpb=62c0346fbbeff005cbbeaec128ff3052cb1b71d6;p=mkws-moved-to-github.git diff --git a/experiments/spclient/mkws.js b/experiments/spclient/mkws.js index a7fb02a..cf2c7dd 100644 --- a/experiments/spclient/mkws.js +++ b/experiments/spclient/mkws.js @@ -646,13 +646,15 @@ function mkws_html_lang(mkws_config) { hash[lang_display[i]] = 1; } - if (hash[lang_default] == 1) - list.push(lang_default); - for (var k in mkws_locale_lang) { - if (hash[k] == 1 || lang_display.length == 0) + if (hash[k] == 1) list.push(k); } + + // add english link + if (lang_display.length == 0 || hash[lang_default] == 1) + list.push(lang_default); + debug("Language menu for: " + list.join(", ")); /* the HTML part */ @@ -700,7 +702,7 @@ function debug(string) { if (!mkws_debug) return; - if (typeof console === "undefined" || typeof console.log === "undefined") { /* ARGH!!! */ + if (typeof console === "undefined" || typeof console.log === "undefined") { /* ARGH!!! old IE */ return; }