Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
046ad545
Commit
046ad545
authored
Dec 28, 2015
by
Marcel Stör
Browse files
Fix String#split to determine selected language code
parent
3e68026d
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/js/extra.js
View file @
046ad545
...
@@ -74,7 +74,8 @@ var nodemcu = nodemcu || {};
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment