aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2013-12-12 10:59:32 +0200
committerHenri Sara <hesara@vaadin.com>2013-12-12 10:59:32 +0200
commitbf77c65bd4a7c880dc852a16d2009e02e5d8941b (patch)
treedd73b1680c66c1a90e3a61e3967e676478a6b64f
parente941ab13913082f6178c89f39ce54fac27f9c952 (diff)
downloadvaadin-framework-bf77c65bd4a7c880dc852a16d2009e02e5d8941b.tar.gz
vaadin-framework-bf77c65bd4a7c880dc852a16d2009e02e5d8941b.zip
Allow also subparts in LegacyLocatorStrategy (#13017)
Change-Id: I7df7cbd03497168b772ee0636df05afb7bcc7995
-rw-r--r--client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java b/client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java
index 42551db043..dfd29058cd 100644
--- a/client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java
+++ b/client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java
@@ -75,7 +75,7 @@ public class LegacyLocatorStrategy implements LocatorStrategy {
private final ApplicationConnection client;
private static final RegExp validSyntax = RegExp
- .compile("^((\\w+::)?(PID_S\\w+)?)?(/[$_a-zA-Z0-9]+\\[\\d+\\])*/?$");
+ .compile("^((\\w+::)?(PID_S\\w+)?)?(/[$_a-zA-Z0-9]+\\[\\d+\\])*/?(#.*)?$");
public LegacyLocatorStrategy(ApplicationConnection clientConnection) {
client = clientConnection;