X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=raphael.js;h=75728ffa68c12948c7e5604b015880bae8ee41f1;hb=61f72045caa90d2a7dc79bba26181705dcada2aa;hp=a8363aa49af2dc8575da6137bbf746d77b67d94d;hpb=992b6089e62ef2e397f4edde3599aaed12d64f52;p=raphael diff --git a/raphael.js b/raphael.js index a8363aa..75728ff 100644 --- a/raphael.js +++ b/raphael.js @@ -3880,6 +3880,9 @@ window.Raphael.svg && function (R) { break; } clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity}); + // falls through (this is where setting is done...) + + case "stroke": clr = R.getRGB(value); node.setAttribute(att, clr.hex); @@ -4179,11 +4182,13 @@ window.Raphael.svg && function (R) { for (var key in params) { eve("attr." + key + "." + this.id, this, params[key]); } - for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) { - var par = this.paper.customAttributes[key].apply(this, [].concat(params[key])); - this.attrs[key] = params[key]; - for (var subkey in par) if (par[has](subkey)) { - params[subkey] = par[subkey]; + for (key in this.paper.customAttributes) { + if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) { + var par = this.paper.customAttributes[key].apply(this, [].concat(params[key])); + this.attrs[key] = params[key]; + for (var subkey in par) if (par[has](subkey)) { + params[subkey] = par[subkey]; + } } } setFillAndStroke(this, params); @@ -4606,6 +4611,7 @@ window.Raphael.vml && function (R) { stroke[se + "arrowwidth"] = h; }, setFillAndStroke = function (o, params) { + //Roo.log( ['setFillAndStroke' , o, params]); // o.paper.canvas.style.display = "none"; o.attrs = o.attrs || {}; var node = o.node,