Commit 19608d3e authored by Grzegorz Bizon's avatar Grzegorz Bizon

Fix double request issue in artifacts browser

parent 2becc6fa
......@@ -23,6 +23,10 @@
.center Empty
:javascript
$(document).on('click', 'tr[data-link]', function(e) {
$('.tree-holder').on('click', 'tr[data-link] a', function(e) {
e.stopImmediatePropagation();
});
$('.tree-holder').on('click', 'tr[data-link]', function(e) {
window.location = this.dataset.link;
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment