PolyGerrit: Fix "TypeError: null is not an object (evaluating 'element.offsetParent')"
The error happends only when you reload a page and scroll when it's loading
the content.
Change-Id: I28f3bf194e0bd5d56f5068387da453d6870cf604
(cherry picked from commit f19f5e783c
)
This commit is contained in:

committed by
David Pursehouse

parent
42f44cf312
commit
f633a809ba
@@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
/* Functions used for test purposes */
|
/* Functions used for test purposes */
|
||||||
_getOffsetParent(element) {
|
_getOffsetParent(element) {
|
||||||
if (!element.offsetParent) { return ''; }
|
if (!element || !element.offsetParent) { return ''; }
|
||||||
return element.offsetParent;
|
return element.offsetParent;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user