Skip to content

Commit

Permalink
Merge 50639d2 into b762e5b
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMayer committed Mar 3, 2019
2 parents b762e5b + 50639d2 commit f2eb502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/class/cv/report/Record.js
Original file line number Diff line number Diff line change
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

0 comments on commit f2eb502

Please sign in to comment.