Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
fix JS error
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeGermuska committed Aug 9, 2011
1 parent 88e4f78 commit e67f92a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions censusweb/media/js/bulkdata.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ $(function(){
return false; return false;
}; };
download_shapefile_based_on_form_values = function() { download_shapefile_based_on_form_values = function() {
window.location.href = [$("#state-download").val(),$("#sumlev-download").val()].join("-"); var track = [$("#state-download").val(),$("#sumlev-download").val()].join("-");
_gaq.push(['_trackEvent', 'ShapefileDownload', track]); _gaq.push(['_trackEvent', 'ShapefileDownload', track]);
build_shapefile_url($("#state-download").val(),$("#sumlev-download").val()); window.location.href = build_shapefile_url($("#state-download").val(),$("#sumlev-download").val());
} }


parse_params = function() { parse_params = function() {
Expand Down

0 comments on commit e67f92a

Please sign in to comment.