Author: mfranklin
Date: Tue Mar 12 14:58:32 2013
New Revision: 1455566
URL: http://svn.apache.org/r1455566
Log:
fixed href issue
Modified:
rave/site/trunk/content/downloads.mdtext
Modified: rave/site/trunk/content/downloads.mdtext
URL:
http://svn.apache.org/viewvc/rave/site/trunk/content/downloads.mdtext?rev=1455566&r1=1455565&r2=1455566&view=diff
==============================================================================
--- rave/site/trunk/content/downloads.mdtext (original)
+++ rave/site/trunk/content/downloads.mdtext Tue Mar 12 14:58:32 2013
@@ -84,9 +84,9 @@ All downloads can be verified using the
rave.downloads.updateDownloadLinks = function(version) {
$("#version_label").html(version);
- $("#source_dl").href(rave.downloads.getMirrorUrl(version, "SOURCE"));
- $("#tar_dl").href(rave.downloads.getMirrorUrl(version, "TAR"));
- $("#zip_dl").href(rave.downloads.gitMirrorUrl(version, "ZIP"));
+ $("#source_dl").attr('href',rave.downloads.getMirrorUrl(version,
"SOURCE"));
+ $("#tar_dl").attr('href',rave.downloads.getMirrorUrl(version, "TAR"));
+ $("#zip_dl").attr('href',rave.downloads.gitMirrorUrl(version, "ZIP"));
}
rave.downloads.renderReleases =function(template, type, data) {