mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(browser_adapter): element.getBoundingClientRect fails when element not in DOM (IE11)
This commit is contained in:
parent
a393f84fa4
commit
f35dbb99b5
1 changed files with 5 additions and 1 deletions
|
|
@ -270,7 +270,11 @@ defaultDoc() {
|
|||
return document;
|
||||
}
|
||||
getBoundingClientRect(el) {
|
||||
return el.getBoundingClientRect();
|
||||
try {
|
||||
return el.getBoundingClientRect();
|
||||
} catch (e) {
|
||||
return {top: 0, bottom: 0, left: 0, right: 0, width: 0, height: 0};
|
||||
}
|
||||
}
|
||||
getTitle(): string {
|
||||
return document.title;
|
||||
|
|
|
|||
Loading…
Reference in a new issue