add missing ; in {} at application.js (#13811)
Contributed by Adrian Wilkins. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11733 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
de26e3fb85
commit
22a69cc9ae
|
@ -134,7 +134,7 @@ function buildFilterRow(field, operator, values) {
|
|||
if (operators[i] == operator) { option.attr('selected', true); }
|
||||
select.append(option);
|
||||
}
|
||||
select.change(function(){toggleOperator(field)});
|
||||
select.change(function(){ toggleOperator(field); });
|
||||
|
||||
switch (filterOptions['type']){
|
||||
case "list":
|
||||
|
|
Loading…
Reference in New Issue