2013-06-05 08:50:11 -04:00
|
|
|
.loading-graph
|
|
|
|
%center
|
|
|
|
.loading
|
2013-07-13 01:45:48 -04:00
|
|
|
%h3.page-title Building repository graph. Please wait a moment.
|
2013-05-09 01:00:56 -04:00
|
|
|
|
2013-06-05 08:50:11 -04:00
|
|
|
.stat-graph
|
|
|
|
.header.clearfix
|
2013-06-11 02:36:15 -04:00
|
|
|
.pull-right
|
2013-06-05 08:50:11 -04:00
|
|
|
%select
|
|
|
|
%option{:value => "commits"} Commits
|
|
|
|
%option{:value => "additions"} Additions
|
|
|
|
%option{:value => "deletions"} Deletions
|
2013-07-13 01:45:48 -04:00
|
|
|
%h3#date_header.page-title
|
2013-06-05 08:50:11 -04:00
|
|
|
%input#brush_change{:type => "hidden"}
|
|
|
|
.graphs
|
|
|
|
#contributors-master
|
|
|
|
#contributors.clearfix
|
|
|
|
%ol.contributors-list.clearfix
|
2013-05-09 01:00:56 -04:00
|
|
|
|
|
|
|
:javascript
|
2013-06-05 08:50:11 -04:00
|
|
|
$(".stat-graph").hide();
|
2013-05-09 01:00:56 -04:00
|
|
|
|
2013-06-05 08:50:11 -04:00
|
|
|
$.ajax({
|
|
|
|
type: "GET",
|
|
|
|
url: location.href,
|
|
|
|
complete: function() {
|
2013-06-25 10:34:50 -04:00
|
|
|
$(".stat-graph").fadeIn();
|
2013-06-05 08:50:11 -04:00
|
|
|
$(".loading-graph").hide();
|
|
|
|
},
|
|
|
|
dataType: "script"
|
|
|
|
});
|