Update_lang.js

on line 101 missing a semicolon
This commit is contained in:
Diego
2017-07-20 11:50:47 -06:00
committed by Robert Lord
parent 1087f8bd69
commit a00b046b3d

View File

@@ -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) {