summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphs/stat_graph.js
blob: 75a53aae33cac91ca53454fd750320e2b59f4434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-return-assign, max-len */
(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(window);