mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
debug nodes in subflows are ignored and changed name of callback to callback
This commit is contained in:
@@ -452,9 +452,9 @@ RED.history = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
if(ev.sideEffectCallback && typeof ev.sideEffectCallback === 'function') {
|
||||
inverseEv.sideEffectCallback = ev.sideEffectCallback;
|
||||
ev.sideEffectCallback(ev);
|
||||
if(ev.callback && typeof ev.callback === 'function') {
|
||||
inverseEv.callback = ev.callback;
|
||||
ev.callback(ev);
|
||||
}
|
||||
|
||||
Object.keys(modifiedTabs).forEach(function(id) {
|
||||
|
Reference in New Issue
Block a user