Skip to content

Commit

Permalink
Merge branch 'release-0.11' of github.com:CometVisu/CometVisu into re…
Browse files Browse the repository at this point in the history
…lease-0.11
  • Loading branch information
peuter committed Mar 3, 2019
2 parents b762e5b + b87d33e commit 5280046
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/class/cv/report/Record.js
Expand Up @@ -312,7 +312,7 @@ qx.Class.define('cv.report.Record', {

recordScroll: function(ev) {
var page = ev.getTarget();
var path = qx.bom.element.Attribute.get(page, "id");
var path = (undefined !== page && 'getAttribute' in page) ? qx.bom.element.Attribute.get(page, "id") : undefined;
var data = {
type: ev.getType(),
page: path,
Expand Down Expand Up @@ -392,4 +392,4 @@ qx.Class.define('cv.report.Record', {
return a.download;
}
}
});
});

0 comments on commit 5280046

Please sign in to comment.