mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 04:08:40 +00:00
Update_lang.js
on line 101 missing a semicolon
This commit is contained in:
parent
1087f8bd69
commit
a00b046b3d
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ under the License.
|
|||
// gets the language set in the query string
|
||||
function getLanguageFromQueryString() {
|
||||
if (location.search.length >= 1) {
|
||||
var language = parseURL(location.search).language
|
||||
var language = parseURL(location.search).language;
|
||||
if (language) {
|
||||
return language;
|
||||
} else if (jQuery.inArray(location.search.substr(1), languages) != -1) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue