Fix String#split to determine selected language code

This commit is contained in:
Marcel Stör 2015-12-28 21:38:09 +01:00
parent 3e68026d7b
commit 046ad545ae
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ var nodemcu = nodemcu || {};
var selectedLanguageCode, path = window.location.pathname; var selectedLanguageCode, path = window.location.pathname;
if (window.location.origin.indexOf('readthedocs') > -1) { if (window.location.origin.indexOf('readthedocs') > -1) {
// path is like /en/<branch>/<lang>/build/ -> extract 'lang' // path is like /en/<branch>/<lang>/build/ -> extract 'lang'
selectedLanguageCode = path.split('/')[2]; // split[0] is an '' because the path starts with the separator
selectedLanguageCode = path.split('/')[3];
} else { } else {
// path is like /<lang>/build/ -> extract 'lang' // path is like /<lang>/build/ -> extract 'lang'
selectedLanguageCode = path.substr(1, 2); selectedLanguageCode = path.substr(1, 2);