Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stat_graph.js « graphs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3273bf3a26380b7bb5cf0c24f25706bb1bc1a022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-return-assign, padded-blocks, 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(this);