@bbn/bbn 1.0.192 → 1.0.193
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bbn.js +2 -1
- package/dist/bbn.js.map +1 -1
- package/dist/fn/ajax/abort.js +2 -1
- package/package.json +1 -1
package/dist/bbn.js
CHANGED
|
@@ -1362,9 +1362,10 @@ var abort = function (requestId) {
|
|
|
1362
1362
|
if (loader === null || loader === void 0 ? void 0 : loader.aborter) {
|
|
1363
1363
|
loader.aborter.abort('Operation canceled by the user.');
|
|
1364
1364
|
}
|
|
1365
|
+
/*
|
|
1365
1366
|
else {
|
|
1366
1367
|
throw new Error("Impossible to find the loader " + requestId);
|
|
1367
|
-
}
|
|
1368
|
+
}*/
|
|
1368
1369
|
};
|
|
1369
1370
|
|
|
1370
1371
|
|