diff options
author | Henri Sara <hesara@vaadin.com> | 2013-12-12 10:08:12 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2013-12-12 10:08:12 +0200 |
commit | e941ab13913082f6178c89f39ce54fac27f9c952 (patch) | |
tree | c659100717da30d2a0f86ddebb07b6364ee17fdb /client | |
parent | cbfffae957fad3f3c7656f6c641a9a08a67724e4 (diff) | |
download | vaadin-framework-e941ab13913082f6178c89f39ce54fac27f9c952.tar.gz vaadin-framework-e941ab13913082f6178c89f39ce54fac27f9c952.zip |
Expand allowed character set for LegacyLocatorStrategy (#13017)
Change-Id: Ib95fecb67e97d71fb68faee82aa9ebf458c735f3
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/componentlocator/LegacyLocatorStrategy.java | 2 |
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 4a1b100213..42551db043 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; |