debian-mirror-gitlab/app/views/projects/graphs/show.html.haml

50 lines
1.2 KiB
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- @no_container = true
2015-09-25 12:07:36 +05:30
- page_title "Contributors", "Graphs"
2015-04-26 12:48:37 +05:30
= render 'head'
2015-09-11 14:41:01 +05:30
2016-06-22 15:30:34 +05:30
%div{ class: (container_class) }
.sub-header-block
.tree-ref-holder
= render 'shared/ref_switcher', destination: 'graphs'
%ul.breadcrumb.repo-breadcrumb
= commits_breadcrumbs
.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 #{@ref}, excluding merge commits. Limited to 6,000 commits.
%input#brush_change{:type => "hidden"}
.graphs.row
#contributors-master
#contributors.clearfix
%ol.contributors-list.clearfix
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
2015-11-26 14:37:03 +05:30
:javascript
$.ajax({
2014-09-02 18:07:02 +05:30
type: "GET",
url: location.href,
2015-11-26 14:37:03 +05:30
dataType: "json",
success: function (data) {
var graph = new ContributorsStatGraph();
graph.init(data);
2015-04-26 12:48:37 +05:30
2015-11-26 14:37:03 +05:30
$("#brush_change").change(function(){
graph.change_date_header();
graph.redraw_authors();
});
2015-04-26 12:48:37 +05:30
2014-09-02 18:07:02 +05:30
$(".stat-graph").fadeIn();
$(".loading-graph").hide();
2015-11-26 14:37:03 +05:30
}
});