31 lines
707 B
Text
31 lines
707 B
Text
.loading-graph
|
|
%center
|
|
.loading
|
|
%h3.page-title Building repository graph. Please wait a moment.
|
|
|
|
.stat-graph
|
|
.header.clearfix
|
|
.pull-right
|
|
%select
|
|
%option{:value => "commits"} Commits
|
|
%option{:value => "additions"} Additions
|
|
%option{:value => "deletions"} Deletions
|
|
%h3#date_header.page-title
|
|
%input#brush_change{:type => "hidden"}
|
|
.graphs
|
|
#contributors-master
|
|
#contributors.clearfix
|
|
%ol.contributors-list.clearfix
|
|
|
|
:javascript
|
|
$(".stat-graph").hide();
|
|
|
|
$.ajax({
|
|
type: "GET",
|
|
url: location.href,
|
|
complete: function() {
|
|
$(".stat-graph").fadeIn();
|
|
$(".loading-graph").hide();
|
|
},
|
|
dataType: "script"
|
|
});
|