summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphs/stat_graph.js
blob: b796a9abb494d07c5948de5e4e740349006a8ba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable */
(function() {
  this.StatGraph = (function() {
    function StatGraph() {}

    StatGraph.log = {};

    StatGraph.get_log = function() {
      return this.log;
    };

    StatGraph.set_log = function(data) {
      return this.log = data;
    };

    return StatGraph;

  })();

}).call(this);