We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c43bf75 commit 35e5fa4Copy full SHA for 35e5fa4
scripts/JSRoot.io.js
@@ -2433,7 +2433,7 @@ JSROOT.define(['rawinflate'], () => {
2433
2434
return new Promise((resolve,reject) =>
2435
2436
- this.fs.open(filename, 'r', (status, fd) => {
+ this.fs.open(this.fFileName, 'r', (status, fd) => {
2437
if (status) {
2438
console.log(status.message);
2439
return reject(Error(`Not possible to open ${filename} inside node.js`));
@@ -2462,7 +2462,7 @@ JSROOT.define(['rawinflate'], () => {
2462
2463
let cnt = 0, blobs = [];
2464
2465
- function readfunc(err, bytesRead, buf) {
+ let readfunc = (err, bytesRead, buf) => {
2466
2467
let res = new DataView(buf.buffer, buf.byteOffset, place[cnt + 1]);
2468
if (place.length === 2) return resolve(res);
0 commit comments