Commit b87c69c7 by Tomas Alabes

Fix to make IE9 display tooltips when setting the title attribute on an element. By @samcrang

parent 426680e3
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6066,6 +6066,11 @@ ...@@ -6066,6 +6066,11 @@
break; break;
case "href": case "href":
case "title": case "title":
var hl = $("title");
var val = R._g.doc.createTextNode(value);
hl.appendChild(val);
node.appendChild(hl);
break;
case "target": case "target":
var pn = node.parentNode; var pn = node.parentNode;
if (pn.tagName.toLowerCase() != "a") { if (pn.tagName.toLowerCase() != "a") {
......
...@@ -324,6 +324,11 @@ window.Raphael && window.Raphael.svg && function(R) { ...@@ -324,6 +324,11 @@ window.Raphael && window.Raphael.svg && function(R) {
break; break;
case "href": case "href":
case "title": case "title":
var hl = $("title");
var val = R._g.doc.createTextNode(value);
hl.appendChild(val);
node.appendChild(hl);
break;
case "target": case "target":
var pn = node.parentNode; var pn = node.parentNode;
if (pn.tagName.toLowerCase() != "a") { if (pn.tagName.toLowerCase() != "a") {
......
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