You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bu...@apache.org on 2014/10/14 17:28:40 UTC

svn commit: r925753 - in /websites/staging/accumulo/trunk/content: ./ downloads/index.html

Author: buildbot
Date: Tue Oct 14 15:28:40 2014
New Revision: 925753

Log:
Staging update by buildbot for accumulo

Modified:
    websites/staging/accumulo/trunk/content/   (props changed)
    websites/staging/accumulo/trunk/content/downloads/index.html

Propchange: websites/staging/accumulo/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Oct 14 15:28:40 2014
@@ -1 +1 @@
-1631787
+1631791

Modified: websites/staging/accumulo/trunk/content/downloads/index.html
==============================================================================
--- websites/staging/accumulo/trunk/content/downloads/index.html (original)
+++ websites/staging/accumulo/trunk/content/downloads/index.html Tue Oct 14 15:28:40 2014
@@ -198,7 +198,7 @@ Latest 1.5 release: <strong>1.5.1</stron
 * This function takes a valid URL string as an argument, and uses that URL string
 * as the event label.
 */
-$('.download_tarball').click(function(event) {
+var gaCallback = function(event) {
   var hrefUrl = event.target.getAttribute('href')
   if (event.ctrlKey || event.shiftKey || event.metaKey || event.which == 2) {
     var newWin = true;}
@@ -213,6 +213,10 @@ $('.download_tarball').click(function(ev
   }
 });
 
+$( document ).ready(function() {
+  $('.download_tarball').click(gaCallback);
+});
+
 var createSection = function(name, items, divider) {
   var section = '';
   if (divider == undefined) { divider = true; }