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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz1@gmail.com>2016-07-22 00:33:24 +0300
committerJacob Schatz <jschatz1@gmail.com>2016-07-22 00:33:24 +0300
commitd2cb058ac9c63a07d0153701ad79bece21ba94ad (patch)
tree9e650208f7ce1935d77aca34e3486e13a08da8e8 /app/assets/javascripts/graphs/stat_graph.js
parent95c4825a456a4d1df8dba1def8735203368356c9 (diff)
Initial commit of coffee to jsto_vanilla
Diffstat (limited to 'app/assets/javascripts/graphs/stat_graph.js')
-rw-r--r--app/assets/javascripts/graphs/stat_graph.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/javascripts/graphs/stat_graph.js b/app/assets/javascripts/graphs/stat_graph.js
new file mode 100644
index 00000000000..7173d7e9899
--- /dev/null
+++ b/app/assets/javascripts/graphs/stat_graph.js
@@ -0,0 +1,20 @@
+// Generated by CoffeeScript 1.10.0
+(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);