Fixed new issue form rendering with IE8.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10806 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
fd41840434
commit
e9e5d2e072
|
@ -485,9 +485,11 @@ function updateBulkEditFrom(url) {
|
|||
}
|
||||
|
||||
function observeAutocompleteField(fieldId, url) {
|
||||
$('#'+fieldId).autocomplete({
|
||||
source: url,
|
||||
minLength: 2
|
||||
$(document).ready(function() {
|
||||
$('#'+fieldId).autocomplete({
|
||||
source: url,
|
||||
minLength: 2
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue