##// END OF EJS Templates
Fixed new issue form rendering with IE8....
Jean-Philippe Lang -
r10582:e9e5d2e072f6
parent child
Show More
@@ -485,9 +485,11 function updateBulkEditFrom(url) {
485 }
485 }
486
486
487 function observeAutocompleteField(fieldId, url) {
487 function observeAutocompleteField(fieldId, url) {
488 $('#'+fieldId).autocomplete({
488 $(document).ready(function() {
489 source: url,
489 $('#'+fieldId).autocomplete({
490 minLength: 2
490 source: url,
491 minLength: 2
492 });
491 });
493 });
492 }
494 }
493
495
General Comments 0
You need to be logged in to leave comments. Login now