Commit ea5fa54b authored by Jacob Schatz's avatar Jacob Schatz Committed by Jacob Schatz

dropdown chooses right default

parent f56783e5
......@@ -3,14 +3,15 @@
.git-clone-holder
.btn-group.clone-options
%a.clone-dropdown-btn.btn{href: '#', 'data-toggle' => 'dropdown'}
%span SSH
%span
= default_clone_protocol.upcase
= icon('angle-down')
%ul.dropdown-menu.dropdown-menu-right.clone-options-dropdown
%li
%a{href: '#'}
%a{href: '#', "data-url" => @project.ssh_url_to_repo}
SSH
%li
%a{href: '#'}
%a{href: '#', "data-url" => @project.http_url_to_repo}
HTTPS
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true
......@@ -22,5 +23,5 @@
e.preventDefault();
var $this = $(this);
$('a.clone-dropdown-btn span').text($this.text());
console.log("got it",$(this).text());
$('#project_clone').val($this.data('url'));
});
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