diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-05-27 11:38:25 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-05-27 11:38:25 +0200 |
commit | 6fa1fbf980f4e06b535dc651b85b7b2d9ddca53a (patch) | |
tree | 33fa313dd3a0e984e4601eeafe78393403a519c9 | |
parent | c7e1c669dee9547c42fa86c3df6006bae4bffd1b (diff) | |
download | svg.js-6fa1fbf980f4e06b535dc651b85b7b2d9ddca53a.tar.gz svg.js-6fa1fbf980f4e06b535dc651b85b7b2d9ddca53a.zip |
Fixed event-regex
-rw-r--r-- | src/regex.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.js b/src/regex.js index 13f62d8..bd59e9c 100644 --- a/src/regex.js +++ b/src/regex.js @@ -34,6 +34,6 @@ SVG.regex = { , isImage: /\.(jpg|jpeg|png|gif)(\?[^=]+.*)?/i /* test for namespaced event */ -, isEvent: /^[\w]+:[\w]+$/ +, isEvent: /^[\w]+.[\w]+$/ }
\ No newline at end of file |