Author: kschenk
Date: Wed Apr 25 23:59:26 2012
New Revision: 1330607
URL: http://svn.apache.org/viewvc?rev=1330607&view=rev
Log:
kls -- try again, failed commit, typos in getMirrorHost
Modified:
incubator/ooo/ooo-site/trunk/content/download/test/download_new_dl.js
Modified: incubator/ooo/ooo-site/trunk/content/download/test/download_new_dl.js
URL:
http://svn.apache.org/viewvc/incubator/ooo/ooo-site/trunk/content/download/test/download_new_dl.js?rev=1330607&r1=1330606&r2=1330607&view=diff
==============================================================================
--- incubator/ooo/ooo-site/trunk/content/download/test/download_new_dl.js
(original)
+++ incubator/ooo/ooo-site/trunk/content/download/test/download_new_dl.js Wed
Apr 25 23:59:26 2012
@@ -18,7 +18,7 @@ function getMirrorHost() {
// If random value is lower than ratio
if ( randVal < MIRROR_RATIO ) {
mirrorHost = "Apache";
- document.write ("Apache wins" + <br/>");
+ document.write ("Apache wins <br/>");
return MIRROR_APACHE_URL;
}
}
@@ -27,7 +27,7 @@ function getMirrorHost() {
// If random value is higher than ratio
if ( randVal > MIRROR_RATIO ) {
mirrorHost = "SourceForge";
- document.write ("SourceForge wins" + "<br />");
+ document.write ("SourceForge wins <br />");
return MIRROR_SOURCEFORGE_URL;
}
}