Bugfix to support <a> elements in SVG diagrams - close #421

pull/422/head
Lucas Cimon 6 years ago
parent 55dac39bdd
commit 501bdc59bf

@ -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;
}

Loading…
Cancel
Save