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:
Jean-Philippe Lang 2012-11-15 19:59:14 +00:00
parent fd41840434
commit e9e5d2e072
1 changed files with 5 additions and 3 deletions

View File

@ -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
});
});
}