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/graph/show.html.haml')
-rw-r--r--app/views/graph/show.html.haml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/graph/show.html.haml b/app/views/graph/show.html.haml
new file mode 100644
index 00000000000..ca3a8706313
--- /dev/null
+++ b/app/views/graph/show.html.haml
@@ -0,0 +1,19 @@
+%h3.page_title Project Network Graph
+%br
+= render partial: 'shared/ref_switcher', locals: {destination: 'graph', path: @path}
+%br
+.graph_holder
+ %h4
+ %small You can move around the graph by using the arrow keys.
+ #holder.graph
+ .loading.loading-gray
+
+:javascript
+ var branch_graph;
+ $(function(){
+ branch_graph = new BranchGraph($("#holder"), {
+ url: '#{project_graph_path(@project, @ref, format: :json)}',
+ commit_url: '#{project_commit_path(@project, 'ae45ca32').gsub("ae45ca32", "%s")}',
+ ref: '#{@ref}'
+ });
+ });