Comparing version 4.0.2 to 4.0.3
@@ -60,2 +60,3 @@ /** | ||
this._payload = payload; | ||
this._isHandled = {}; | ||
@@ -74,3 +75,3 @@ this._isPending = {}; | ||
debug('Dispatched action \'%s\'.', action); | ||
fn.call(this, payload, _stopDispatching.bind(this)); | ||
fn.call(this, this._payload, _stopDispatching.bind(this)); | ||
}; | ||
@@ -104,3 +105,4 @@ | ||
return _getAction.call(this, action); | ||
var nwAction = _getAction.call(this, action); | ||
return nwAction.bind(this, this._payload) | ||
}.bind(this)); | ||
@@ -174,4 +176,5 @@ | ||
this._isDispatching = false; | ||
this._payload = null; | ||
this._isPending = {}; | ||
this._isHandled = {}; | ||
} |
{ | ||
"name": "barracks", | ||
"version": "4.0.2", | ||
"version": "4.0.3", | ||
"description": "An event dispatcher for the flux architecture", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
9655
140