Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkollmann committed Jan 10, 2021
1 parent 990a444 commit 414ffe5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,11 @@ qx.Class.define("qxl.apiviewer.compile.LibraryApi", {
}
res.classes.sort();
appMeta.addPreBootCode(`
if (!window.qxl)
if (!window.qxl) {
window.qxl = {};
}
qxl.$$apiviewer =
${JSON.stringify(res, null, 2)}
${JSON.stringify(res, null, 2)};
`);
}
}
Expand Down

0 comments on commit 414ffe5

Please sign in to comment.