Author: marcus
Date: Tue Jan 20 18:48:13 2015
New Revision: 1653334

URL: http://svn.apache.org/r1653334
Log:
Fixed the error of an empty text box with changing the position of the 'if()' 
statement

Modified:
    openoffice/ooo-site/trunk/content/index.html

Modified: openoffice/ooo-site/trunk/content/index.html
URL: 
http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/index.html?rev=1653334&r1=1653333&r2=1653334&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/index.html (original)
+++ openoffice/ooo-site/trunk/content/index.html Tue Jan 20 18:48:13 2015
@@ -144,12 +144,6 @@
                lang_iso = "pt";
        }
 
-       // Fix for English as main language for the website, it does not need a 
language code.
-       if( lang_iso === "en-us" || lang_iso === "en-gb" || lang_iso === 
"en-uk" || lang_iso === "en" ||
-           lang_iso === "en-US" || lang_iso === "en-GB" || lang_iso === 
"en-UK" ) {
-               lang_iso = "";
-       }
-
        // Query if the browser language is one of the released languages.
        // The array has 3 elements per language (defined in 
"/download/globalvars.js"
        for( var i = 0, j = DL.SEL_LANG.length; i < j; i = i + 3 ) {
@@ -175,6 +169,12 @@
            lang_mode = "none";
        }
 
+       // Fix for English as main language for the website, it does not need a 
language code.
+       if( lang_iso === "en-us" || lang_iso === "en-gb" || lang_iso === 
"en-uk" || lang_iso === "en" ||
+           lang_iso === "en-US" || lang_iso === "en-GB" || lang_iso === 
"en-UK" ) {
+               lang_iso = "";
+       }
+
        switch( lang_mode ) {
                case "hard":
                        // Do not show a message, just redirect. 


Reply via email to