Merged r3879 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3880 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
41e38483a6
commit
8146e096f4
|
@ -1,6 +1,5 @@
|
||||||
<span id="attachments_fields">
|
<span id="attachments_fields">
|
||||||
<%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil -%>
|
<%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil -%><label class="inline"><span id="attachment_description_label_content"><%= l(:label_optional_description) %></span><%= text_field_tag 'attachments[1][description]', '', :size => 60, :id => nil %>
|
||||||
<label class="inline"><span id="attachment_description_label_content"><%= l(:label_optional_description) %></span><%= text_field_tag 'attachments[1][description]', '', :size => 60, :id => nil %>
|
|
||||||
</label>
|
</label>
|
||||||
</span>
|
</span>
|
||||||
<br />
|
<br />
|
||||||
|
|
|
@ -52,7 +52,7 @@ function addFileField() {
|
||||||
d.type = "text";
|
d.type = "text";
|
||||||
d.name = "attachments[" + fileFieldCount + "][description]";
|
d.name = "attachments[" + fileFieldCount + "][description]";
|
||||||
d.size = 60;
|
d.size = 60;
|
||||||
var dLabel = document.createElement("label");
|
var dLabel = new Element('label');
|
||||||
dLabel.addClassName('inline');
|
dLabel.addClassName('inline');
|
||||||
// Pulls the languge value used for Optional Description
|
// Pulls the languge value used for Optional Description
|
||||||
dLabel.update($('attachment_description_label_content').innerHTML)
|
dLabel.update($('attachment_description_label_content').innerHTML)
|
||||||
|
|
Loading…
Reference in New Issue