30 lines
1,021 B
Text
30 lines
1,021 B
Text
- project = project || @project
|
|
|
|
.git-clone-holder.input-group
|
|
.input-group-btn
|
|
- if allowed_protocols_present?
|
|
.clone-dropdown-btn.btn.btn-static
|
|
%span
|
|
= enabled_project_button(project, enabled_protocol)
|
|
- else
|
|
%a#clone-dropdown.clone-dropdown-btn.btn{ href: '#', data: { toggle: 'dropdown' } }
|
|
%span
|
|
= default_clone_protocol.upcase
|
|
= icon('caret-down')
|
|
%ul.dropdown-menu.dropdown-menu-right.clone-options-dropdown
|
|
%li
|
|
= ssh_clone_button(project)
|
|
%li
|
|
= http_clone_button(project)
|
|
|
|
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true
|
|
.input-group-btn
|
|
= clipboard_button(clipboard_target: '#project_clone')
|
|
|
|
:javascript
|
|
$('ul.clone-options-dropdown a').on('click',function(e){
|
|
e.preventDefault();
|
|
var $this = $(this);
|
|
$('a.clone-dropdown-btn span').text($this.text());
|
|
$('#project_clone').val($this.attr('href'));
|
|
});
|