JS/IE8: fix IE8 error caused by focus()
No more error when using the jQuery wrapper. Focus handling is pretty outdated, needs special care as soon as we have auto-refreshing search fields.
This commit is contained in:
parent
db73d324de
commit
c3eae11624
|
@ -612,7 +612,7 @@
|
|||
$container.scrollTop(scrollPos);
|
||||
}
|
||||
if (origFocus) {
|
||||
origFocus.focus();
|
||||
$(origFocus).focus();
|
||||
}
|
||||
|
||||
// TODO: this.icinga.events.refreshContainer(container);
|
||||
|
|
Loading…
Reference in New Issue