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:
Paladox none
2017-10-11 21:09:14 +00:00
committed by David Pursehouse
parent 42f44cf312
commit f633a809ba

View File

@@ -48,7 +48,7 @@
/* Functions used for test purposes */
_getOffsetParent(element) {
if (!element.offsetParent) { return ''; }
if (!element || !element.offsetParent) { return ''; }
return element.offsetParent;
},