2012-02-21 15:41:16 +00:00
|
|
|
.description-top
|
2012-02-22 22:11:55 +00:00
|
|
|
= 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
|
2012-02-21 15:41:16 +00:00
|
|
|
.role
|
2012-03-01 17:37:24 +00:00
|
|
|
= t("layout.read_write_access")
|
2012-02-27 17:40:46 +00:00
|
|
|
= 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();
|
|
|
|
});
|
|
|
|
});
|