diff --git a/index.html b/index.html index 2b93549..271bdc0 100644 --- a/index.html +++ b/index.html @@ -53,7 +53,6 @@ {{ lc.lab.money | currency }}

-
@@ -131,7 +130,6 @@ - diff --git a/js/game.js b/js/game.js index 0e532d8..d94586c 100644 --- a/js/game.js +++ b/js/game.js @@ -20,13 +20,11 @@ data: 0, reputation: 0, money: 0, - researchHistogram: new Histogram('#ResearchHist'), - getGrant: function() { - this.money += this.reputation * 5; // TODO: adjust factor, 5 + getGrant: function () { + this.money += this.reputation * 5; // TODO: adjust factor }, acquire: function(amount) { this.data += amount; - this.researchHistogram.add_events(amount); }, research: function(cost, reputation) { if (this.data >= cost) {