fix(browser_adapter): element.getBoundingClientRect fails when element not in DOM (IE11)

This commit is contained in:
Marc Laval 2015-05-21 11:50:04 +02:00
parent a393f84fa4
commit f35dbb99b5
1 changed files with 5 additions and 1 deletions

View File

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