Merge pull request #422 from Lucas-C/master

Bugfix to support <a> elements in SVG diagrams - close #421
This commit is contained in:
Benoît Latinier 2018-04-25 22:26:27 +02:00 committed by GitHub
commit 514c5d42b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ define(["app/api", "app/dom", "app/i18n"], function(api, $, i18n) {
var objs = {};
$.each("a", function(el) {
if (! el.href.match(/#isso-thread$/)) {
if (! el.href.match || ! el.href.match(/#isso-thread$/)) {
return;
}