Commit 8bf6b773 authored by Romain Courteaud's avatar Romain Courteaud

Release version 0.23.1

parent e187ad3f
Pipeline #8456 failed with stage
in 0 seconds
This diff is collapsed.
...@@ -826,7 +826,14 @@ if (typeof document.contains !== 'function') { ...@@ -826,7 +826,14 @@ if (typeof document.contains !== 'function') {
return reject(e); return reject(e);
} }
callback_promise = new RSVP.Queue(result).push(undefined, reject); callback_promise = new RSVP.Queue(result)
.push(undefined, function handleEventCallbackError(error) {
// Prevent rejecting the loop, if the result cancelled itself
if (!(error instanceof RSVP.CancellationError)) {
canceller();
reject(error);
}
});
}; };
target.addEventListener(type, handle_event_callback, useCapture); target.addEventListener(type, handle_event_callback, useCapture);
......
{ {
"name": "renderjs", "name": "renderjs",
"version": "0.23.0", "version": "0.23.1",
"description": "RenderJs provides HTML5 gadgets", "description": "RenderJs provides HTML5 gadgets",
"main": "dist/renderjs-latest.js", "main": "dist/renderjs-latest.js",
"dependencies": { "dependencies": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment