mirror of
https://github.com/danbulant/api_docs
synced 2026-06-19 14:21:31 +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
|
// gets the language set in the query string
|
||||||
function getLanguageFromQueryString() {
|
function getLanguageFromQueryString() {
|
||||||
if (location.search.length >= 1) {
|
if (location.search.length >= 1) {
|
||||||
var language = parseURL(location.search).language
|
var language = parseURL(location.search).language;
|
||||||
if (language) {
|
if (language) {
|
||||||
return language;
|
return language;
|
||||||
} else if (jQuery.inArray(location.search.substr(1), languages) != -1) {
|
} else if (jQuery.inArray(location.search.substr(1), languages) != -1) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue