UCHIC / WEBTSA

A web application for visualizing time series of environmental observations.
BSD 3-Clause "New" or "Revised" License
3 stars 2 forks source link

Broken export button #102

Closed Maurier closed 6 years ago

Maurier commented 7 years ago

The following code

        var link = $('<a></a>');
            link.on('click', function() {
                ga('send', 'event', 'CVS', 'Download', 'Dataset � CVS Download');
            });

needs to be changed to

       var link =  document.createElement("a");
            $(link).on('click', function() {
                ga('send', 'event', 'CVS', 'Download', 'Dataset � CVS Download');
            });

This should revert back the change that broke the export button and still have Google Analytics working.