We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ffed63 + ccd720f commit 134fab8Copy full SHA for 134fab8
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+### 1.4.0
4
+
5
+* Fixed: client event handler scope is no longer a function
6
7
### 1.3.23
8
9
* Removed: developerMode control of resource packages
src/Views/ViewBridge.js
@@ -631,8 +631,8 @@ ViewBridge.prototype.raiseClientEvent = function (eventName) {
631
var lastResponse;
632
633
for (i in this.clientEventHandlers[eventName]) {
634
- var callback = this.clientEventHandlers[eventName][i];
635
- lastResponse = callback.apply(callback, argumentsArray);
+ var handler = this.clientEventHandlers[eventName][i];
+ lastResponse = handler.apply(null, argumentsArray);
636
}
637
638
return lastResponse;
0 commit comments