rosa-build/app/views/projects/_repo_block.html.haml

14 lines
417 B
Plaintext
Raw Normal View History

.description-top
= text_field_tag :url, git_repo_url(project.git_repo_name), :class => 'name',
2012-03-12 14:46:11 +00:00
:type => 'text',:spellcheck => 'false', :readonly => true
.role
= t("layout.read_write_access")
= render :partial => 'projects/branch_select', :locals => {:project => project}
.both
2012-03-12 14:46:11 +00:00
:javascript
$(document).ready(function() {
$('#url').live('click', function() {
$(this).select();
});
});