Skip to content

Commit

Permalink
Fixed JS jshint warning 'confusing plusses'.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Feb 18, 2018
1 parent c0068fc commit 42bdce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ GoAccess.Nav = {
var targ = e.currentTarget;
var data = "text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(GoAccess.getPanelData()));
targ.href = 'data:' + data;
targ.download = 'goaccess-' + +new Date() + '.json';
targ.download = 'goaccess-' + (+new Date()) + '.json';
},

setLayout: function (layout) {
Expand Down

0 comments on commit 42bdce9

Please sign in to comment.