Commit d459d0f3 by Tomas Alabes

Merging TheCloudlessSky-prevent-multiple-svg-title

parent d6a846a0
...@@ -5033,7 +5033,6 @@ ...@@ -5033,7 +5033,6 @@
var isPointInside = false; var isPointInside = false;
this.forEach(function (el) { this.forEach(function (el) {
if (el.isPointInside(x, y)) { if (el.isPointInside(x, y)) {
console.log('runned');
isPointInside = true; isPointInside = true;
return false; // stop loop return false; // stop loop
} }
......
...@@ -323,10 +323,17 @@ window.Raphael && window.Raphael.svg && function(R) { ...@@ -323,10 +323,17 @@ window.Raphael && window.Raphael.svg && function(R) {
o.blur(value); o.blur(value);
break; break;
case "title": case "title":
var hl = $("title"); var title = node.getElementsByTagName("title");
var val = R._g.doc.createTextNode(value);
hl.appendChild(val); // Use the existing <title>.
node.appendChild(hl); if (title.length && (title = title[0])) {
title.firstChild.nodeValue = value;
} else {
title = $("title");
var val = R._g.doc.createTextNode(value);
title.appendChild(val);
node.appendChild(title);
}
break; break;
case "href": case "href":
case "target": case "target":
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -5412,7 +5412,6 @@ ...@@ -5412,7 +5412,6 @@
var isPointInside = false; var isPointInside = false;
this.forEach(function (el) { this.forEach(function (el) {
if (el.isPointInside(x, y)) { if (el.isPointInside(x, y)) {
console.log('runned');
isPointInside = true; isPointInside = true;
return false; // stop loop return false; // stop loop
} }
...@@ -6079,10 +6078,17 @@ ...@@ -6079,10 +6078,17 @@
o.blur(value); o.blur(value);
break; break;
case "title": case "title":
var hl = $("title"); var title = node.getElementsByTagName("title");
var val = R._g.doc.createTextNode(value);
hl.appendChild(val); // Use the existing <title>.
node.appendChild(hl); if (title.length && (title = title[0])) {
title.firstChild.nodeValue = value;
} else {
title = $("title");
var val = R._g.doc.createTextNode(value);
title.appendChild(val);
node.appendChild(title);
}
break; break;
case "href": case "href":
case "target": case "target":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment