@lumino/signaling
Advanced tools
Comparing version 1.3.5 to 1.3.6
@@ -398,14 +398,6 @@ "use strict"; | ||
function disconnectAll(object) { | ||
// Clear and cleanup any receiver connections. | ||
var receivers = receiversForSender.get(object); | ||
if (receivers && receivers.length > 0) { | ||
algorithm_1.each(receivers, function (connection) { connection.signal = null; }); | ||
scheduleCleanup(receivers); | ||
} | ||
// Clear and cleanup any sender connections. | ||
var senders = sendersForReceiver.get(object); | ||
if (senders && senders.length > 0) { | ||
algorithm_1.each(senders, function (connection) { connection.signal = null; }); | ||
scheduleCleanup(senders); | ||
} | ||
// Remove all connections where the given object is the sender. | ||
disconnectSender(object); | ||
// Remove all connections where the given object is the receiver. | ||
disconnectReceiver(object); | ||
} | ||
@@ -412,0 +404,0 @@ Private.disconnectAll = disconnectAll; |
{ | ||
"name": "@lumino/signaling", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "Lumino Signals and Slots", | ||
@@ -67,3 +67,3 @@ "homepage": "https://github.com/jupyterlab/lumino", | ||
}, | ||
"gitHead": "5a30ef3eaffe7ad8468a58686fea64b11b488b0e" | ||
"gitHead": "35b0020444a7688be0c0f1bf35efb607665d5712" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29483
753