mirror of
https://github.com/redmine/redmine.git
synced 2026-01-24 00:09:46 +01:00
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:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user