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:
Diffstat (limited to 'app/views/projects/graphs/show.html.haml')
-rw-r--r--app/views/projects/graphs/show.html.haml37
1 files changed, 0 insertions, 37 deletions
diff --git a/app/views/projects/graphs/show.html.haml b/app/views/projects/graphs/show.html.haml
deleted file mode 100644
index e3d5094ddc5..00000000000
--- a/app/views/projects/graphs/show.html.haml
+++ /dev/null
@@ -1,37 +0,0 @@
-= render 'head'
-.loading-graph
- .center
- %h3.page-title
- %i.fa.fa-spinner.fa-spin
- Building repository graph.
- %p.slead Please wait a moment, this page will automatically refresh when ready.
-
-.stat-graph.hide
- .header.clearfix
- %h3#date_header.page-title
- %p.light
- Commits to #{@project.default_branch}, excluding merge commits. Limited by 6,000 commits
- %input#brush_change{:type => "hidden"}
- .graphs
- #contributors-master
- #contributors.clearfix
- %ol.contributors-list.clearfix
-
-
-
-:coffeescript
- $.ajax
- type: "GET",
- url: location.href,
- success: (data) ->
- graph = new ContributorsStatGraph()
- graph.init(data)
-
- $("#brush_change").change ->
- graph.change_date_header()
- graph.redraw_authors()
-
- $(".stat-graph").fadeIn();
- $(".loading-graph").hide();
- dataType: "json"
-