remove trailing white-spaces from app/views/queries/_filters.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7294 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
611f7d658f
commit
fa6045a3ea
|
@ -12,7 +12,7 @@ function add_filter() {
|
||||||
for (i=0; i<select.options.length; i++) {
|
for (i=0; i<select.options.length; i++) {
|
||||||
if (select.options[i].value == field) {
|
if (select.options[i].value == field) {
|
||||||
select.options[i].disabled = true;
|
select.options[i].disabled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ Event.observe(document,"dom:loaded", apply_filters_observer);
|
||||||
<td class="operator">
|
<td class="operator">
|
||||||
<%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');" %>
|
<%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');" %>
|
||||||
</td>
|
</td>
|
||||||
<td class="values">
|
<td class="values">
|
||||||
<div id="div_values_<%= field %>" style="display:none;">
|
<div id="div_values_<%= field %>" style="display:none;">
|
||||||
<% case options[:type]
|
<% case options[:type]
|
||||||
when :list, :list_optional, :list_status, :list_subprojects %>
|
when :list, :list_optional, :list_status, :list_subprojects %>
|
||||||
|
|
Loading…
Reference in New Issue