Skip to content

Commit

Permalink
Fixed JS jshint warning 'missing semicolons'.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Feb 17, 2018
1 parent 760acae commit c0068fc
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 @@ -314,7 +314,7 @@ GoAccess.OverallStats = {
item.innerHTML = data.start_date;
});
$$('span.to', function (item) {
item.innerHTML = data.end_date
item.innerHTML = data.end_date;
});
// Iterate over general data object
for (var x in data) {
Expand Down

0 comments on commit c0068fc

Please sign in to comment.