From e35d6eea88c5f660a4b78cac853754d1c3dafdfb Mon Sep 17 00:00:00 2001 From: Igor Babuschkin Date: Sun, 3 Aug 2014 10:13:16 +0200 Subject: [PATCH] Remove histogram for now --- index.html | 2 -- js/game.js | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) 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) {