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 134fab8 + 739eb47 commit 3be76c6Copy full SHA for 3be76c6
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+### 1.4.1
4
+
5
+* Fixed RegEx in Viewbridge getViewIndex
6
7
### 1.4.0
8
9
* Fixed: client event handler scope is no longer a function
src/Views/ViewBridge.js
@@ -172,7 +172,7 @@ ViewBridge.prototype.attachDomChangeEventHandler = function (triggerChangeEvent)
172
};
173
174
ViewBridge.prototype.getViewIndex = function () {
175
- var pattern = /\((\d+)\)$/;
+ var pattern = /\(([^\)]+)\)$/;
176
177
var match = pattern.exec(this.viewNode.id);
178
0 commit comments