Skip to content
Snippets Groups Projects
Commit e5232ccc authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Do not use progress bar when downloading build artifacts

Closes #12491
parent a4ff270d
No related branches found
No related tags found
No related merge requests found
Loading
@@ -4,7 +4,7 @@
Loading
@@ -4,7 +4,7 @@
.top-block.gray-content-block.clearfix .top-block.gray-content-block.clearfix
.pull-right .pull-right
= link_to download_namespace_project_build_artifacts_path(@project.namespace, @project, @build), = link_to download_namespace_project_build_artifacts_path(@project.namespace, @project, @build),
class: 'btn btn-default' do class: 'btn btn-default download' do
= icon('download') = icon('download')
Download artifacts archive Download artifacts archive
   
Loading
@@ -22,6 +22,10 @@
Loading
@@ -22,6 +22,10 @@
.center Empty .center Empty
   
:javascript :javascript
$('.top-block').on('click', '.download', function(e) {
e.stopPropagation();
});
$('.tree-holder').on('click', 'tr[data-link] a', function(e) { $('.tree-holder').on('click', 'tr[data-link] a', function(e) {
e.stopImmediatePropagation(); e.stopImmediatePropagation();
}); });
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment