Commit ba4d5dda by Adrian Muraru Committed by GitHub

Update render.js

parent dbcd242b
...@@ -56,7 +56,11 @@ ...@@ -56,7 +56,11 @@
if (panelsRendered || totalWaitMs > timeoutMs) { if (panelsRendered || totalWaitMs > timeoutMs) {
var bb = page.evaluate(function () { var bb = page.evaluate(function () {
return document.getElementsByClassName("dashboard-container")[0].getBoundingClientRect(); var container = document.getElementsByClassName("dashboard-container")
if (container.length == 0) {
container = document.getElementsByClassName("panel-container")
}
return container[0].getBoundingClientRect();
}); });
// reset viewport to render full page // reset viewport to render full page
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment