Commit 2cd46661 by Tomas Alabes

Blur returning this. By @i-arindam

parent 95ebe5a2
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6817,6 +6817,7 @@ ...@@ -6817,6 +6817,7 @@
} }
t.node.removeAttribute("filter"); t.node.removeAttribute("filter");
} }
return t;
}; };
R._engine.circle = function (svg, x, y, r) { R._engine.circle = function (svg, x, y, r) {
var el = $("circle"); var el = $("circle");
...@@ -7753,6 +7754,7 @@ ...@@ -7753,6 +7754,7 @@
s.margin = 0; s.margin = 0;
delete this.attrs.blur; delete this.attrs.blur;
} }
return this;
}; };
R._engine.path = function (pathString, vml) { R._engine.path = function (pathString, vml) {
......
...@@ -1144,6 +1144,7 @@ window.Raphael && window.Raphael.svg && function(R) { ...@@ -1144,6 +1144,7 @@ window.Raphael && window.Raphael.svg && function(R) {
} }
t.node.removeAttribute("filter"); t.node.removeAttribute("filter");
} }
return t;
}; };
R._engine.circle = function (svg, x, y, r) { R._engine.circle = function (svg, x, y, r) {
var el = $("circle"); var el = $("circle");
......
...@@ -715,6 +715,7 @@ window.Raphael && window.Raphael.vml && function(R) { ...@@ -715,6 +715,7 @@ window.Raphael && window.Raphael.vml && function(R) {
s.margin = 0; s.margin = 0;
delete this.attrs.blur; delete this.attrs.blur;
} }
return this;
}; };
R._engine.path = function (pathString, vml) { R._engine.path = function (pathString, vml) {
......
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