Documentation fixes + custom attributes and getPointAtLength fix
[raphael] / raphael.svg.js
1 // ┌─────────────────────────────────────────────────────────────────────┐ \\
2 // │ Raphaël 2 - JavaScript Vector Library                               │ \\
3 // ├─────────────────────────────────────────────────────────────────────┤ \\
4 // │ SVG Module                                                          │ \\
5 // ├─────────────────────────────────────────────────────────────────────┤ \\
6 // │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com)   │ \\
7 // │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com)             │ \\
8 // │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
9 // └─────────────────────────────────────────────────────────────────────┘ \\
10 window.Raphael.svg && function (R) {
11     var has = "hasOwnProperty",
12         Str = String,
13         toFloat = parseFloat,
14         toInt = parseInt,
15         math = Math,
16         mmax = math.max,
17         abs = math.abs,
18         pow = math.pow,
19         separator = /[, ]+/,
20         eve = R.eve,
21         E = "",
22         S = " ";
23     var xlink = "http://www.w3.org/1999/xlink",
24         markers = {
25             block: "M5,0 0,2.5 5,5z",
26             classic: "M5,0 0,2.5 5,5 3.5,3 3.5,2z",
27             diamond: "M2.5,0 5,2.5 2.5,5 0,2.5z",
28             open: "M6,1 1,3.5 6,6",
29             oval: "M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"
30         },
31         markerCounter = {};
32     R.toString = function () {
33         return  "Your browser supports SVG.\nYou are running Rapha\xebl " + this.version;
34     };
35     var $ = function (el, attr) {
36         if (attr) {
37             if (typeof el == "string") {
38                 el = $(el);
39             }
40             for (var key in attr) if (attr[has](key)) {
41                 if (key.substring(0, 6) == "xlink:") {
42                     el.setAttributeNS(xlink, key.substring(6), Str(attr[key]));
43                 } else {
44                     el.setAttribute(key, Str(attr[key]));
45                 }
46             }
47         } else {
48             el = R._g.doc.createElementNS("http://www.w3.org/2000/svg", el);
49             el.style && (el.style.webkitTapHighlightColor = "rgba(0,0,0,0)");
50         }
51         return el;
52     },
53     gradients = {},
54     rgGrad = /^url\(#(.*)\)$/,
55     removeGradientFill = function (node, paper) {
56         var oid = node.getAttribute("fill");
57         oid = oid && oid.match(rgGrad);
58         if (oid && !--gradients[oid[1]]) {
59             delete gradients[oid[1]];
60             paper.defs.removeChild(R._g.doc.getElementById(oid[1]));
61         }
62     },
63     addGradientFill = function (element, gradient) {
64         var type = "linear",
65             id = element.id + gradient,
66             fx = .5, fy = .5,
67             o = element.node,
68             SVG = element.paper,
69             s = o.style,
70             el = R._g.doc.getElementById(id);
71         if (!el) {
72             gradient = Str(gradient).replace(R._radial_gradient, function (all, _fx, _fy) {
73                 type = "radial";
74                 if (_fx && _fy) {
75                     fx = toFloat(_fx);
76                     fy = toFloat(_fy);
77                     var dir = ((fy > .5) * 2 - 1);
78                     pow(fx - .5, 2) + pow(fy - .5, 2) > .25 &&
79                         (fy = math.sqrt(.25 - pow(fx - .5, 2)) * dir + .5) &&
80                         fy != .5 &&
81                         (fy = fy.toFixed(5) - 1e-5 * dir);
82                 }
83                 return E;
84             });
85             gradient = gradient.split(/\s*\-\s*/);
86             if (type == "linear") {
87                 var angle = gradient.shift();
88                 angle = -toFloat(angle);
89                 if (isNaN(angle)) {
90                     return null;
91                 }
92                 var vector = [0, 0, math.cos(R.rad(angle)), math.sin(R.rad(angle))],
93                     max = 1 / (mmax(abs(vector[2]), abs(vector[3])) || 1);
94                 vector[2] *= max;
95                 vector[3] *= max;
96                 if (vector[2] < 0) {
97                     vector[0] = -vector[2];
98                     vector[2] = 0;
99                 }
100                 if (vector[3] < 0) {
101                     vector[1] = -vector[3];
102                     vector[3] = 0;
103                 }
104             }
105             var dots = R._parseDots(gradient);
106             if (!dots) {
107                 return null;
108             }
109             if (element.gradient) {
110                 SVG.defs.removeChild(element.gradient);
111                 delete element.gradient;
112             }
113
114             id = id.replace(/[\(\)\s,\xb0#]/g, "-");
115             el = $(type + "Gradient", {id: id});
116             element.gradient = el;
117             $(el, type == "radial" ? {
118                 fx: fx,
119                 fy: fy
120             } : {
121                 x1: vector[0],
122                 y1: vector[1],
123                 x2: vector[2],
124                 y2: vector[3],
125                 gradientTransform: element.matrix.invert()
126             });
127             SVG.defs.appendChild(el);
128             for (var i = 0, ii = dots.length; i < ii; i++) {
129                 el.appendChild($("stop", {
130                     offset: dots[i].offset ? dots[i].offset : i ? "100%" : "0%",
131                     "stop-color": dots[i].color || "#fff"
132                 }));
133             }
134         }
135         $(o, {
136             fill: "url(#" + id + ")",
137             opacity: 1,
138             "fill-opacity": 1
139         });
140         s.fill = E;
141         s.opacity = 1;
142         s.fillOpacity = 1;
143         return 1;
144     },
145     updatePosition = function (o) {
146         var bbox = o.getBBox(1);
147         $(o.pattern, {patternTransform: o.matrix.invert() + " translate(" + bbox.x + "," + bbox.y + ")"});
148     },
149     addArrow = function (o, value, isEnd) {
150         if (o.type == "path") {
151             var values = Str(value).toLowerCase().split("-"),
152                 p = o.paper,
153                 se = isEnd ? "end" : "start",
154                 node = o.node,
155                 attrs = o.attrs,
156                 stroke = attrs["stroke-width"],
157                 i = values.length,
158                 type = "classic",
159                 from,
160                 to,
161                 dx,
162                 refX,
163                 attr,
164                 w = 3,
165                 h = 3,
166                 t = 5;
167             while (i--) {
168                 switch (values[i]) {
169                     case "block":
170                     case "classic":
171                     case "oval":
172                     case "diamond":
173                     case "open":
174                     case "none":
175                         type = values[i];
176                         break;
177                     case "wide": h = 5; break;
178                     case "narrow": h = 2; break;
179                     case "long": w = 5; break;
180                     case "short": w = 2; break;
181                 }
182             }
183             if (type == "open") {
184                 w += 2;
185                 h += 2;
186                 t += 2;
187                 dx = 1;
188                 refX = isEnd ? 4 : 1;
189                 attr = {
190                     fill: "none",
191                     stroke: attrs.stroke
192                 };
193             } else {
194                 refX = dx = w / 2;
195                 attr = {
196                     fill: attrs.stroke,
197                     stroke: "none"
198                 };
199             }
200             if (o._.arrows) {
201                 if (isEnd) {
202                     o._.arrows.endPath && markerCounter[o._.arrows.endPath]--;
203                     o._.arrows.endMarker && markerCounter[o._.arrows.endMarker]--;
204                 } else {
205                     o._.arrows.startPath && markerCounter[o._.arrows.startPath]--;
206                     o._.arrows.startMarker && markerCounter[o._.arrows.startMarker]--;
207                 }
208             } else {
209                 o._.arrows = {};
210             }
211             if (type != "none") {
212                 var pathId = "raphael-marker-" + type,
213                     markerId = "raphael-marker-" + se + type + w + h;
214                 if (!R._g.doc.getElementById(pathId)) {
215                     p.defs.appendChild($($("path"), {
216                         "stroke-linecap": "round",
217                         d: markers[type],
218                         id: pathId
219                     }));
220                     markerCounter[pathId] = 1;
221                 } else {
222                     markerCounter[pathId]++;
223                 }
224                 var marker = R._g.doc.getElementById(markerId),
225                     use;
226                 if (!marker) {
227                     marker = $($("marker"), {
228                         id: markerId,
229                         markerHeight: h,
230                         markerWidth: w,
231                         orient: "auto",
232                         refX: refX,
233                         refY: h / 2
234                     });
235                     use = $($("use"), {
236                         "xlink:href": "#" + pathId,
237                         transform: (isEnd ? " rotate(180 " + w / 2 + " " + h / 2 + ") " : S) + "scale(" + w / t + "," + h / t + ")",
238                         "stroke-width": 1 / ((w / t + h / t) / 2)
239                     });
240                     marker.appendChild(use);
241                     p.defs.appendChild(marker);
242                     markerCounter[markerId] = 1;
243                 } else {
244                     markerCounter[markerId]++;
245                     use = marker.getElementsByTagName("use")[0];
246                 }
247                 $(use, attr);
248                 var delta = dx * (type != "diamond" && type != "oval");
249                 if (isEnd) {
250                     from = o._.arrows.startdx * stroke || 0;
251                     to = R.getTotalLength(attrs.path) - delta * stroke;
252                 } else {
253                     from = delta * stroke;
254                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
255                 }
256                 attr = {};
257                 attr["marker-" + se] = "url(#" + markerId + ")";
258                 if (to || from) {
259                     attr.d = Raphael.getSubpath(attrs.path, from, to);
260                 }
261                 $(node, attr);
262                 o._.arrows[se + "Path"] = pathId;
263                 o._.arrows[se + "Marker"] = markerId;
264                 o._.arrows[se + "dx"] = delta;
265                 o._.arrows[se + "Type"] = type;
266                 o._.arrows[se + "String"] = value;
267             } else {
268                 if (isEnd) {
269                     from = o._.arrows.startdx * stroke || 0;
270                     to = R.getTotalLength(attrs.path) - from;
271                 } else {
272                     from = 0;
273                     to = R.getTotalLength(attrs.path) - (o._.arrows.enddx * stroke || 0);
274                 }
275                 o._.arrows[se + "Path"] && $(node, {d: Raphael.getSubpath(attrs.path, from, to)});
276                 delete o._.arrows[se + "Path"];
277                 delete o._.arrows[se + "Marker"];
278                 delete o._.arrows[se + "dx"];
279                 delete o._.arrows[se + "Type"];
280                 delete o._.arrows[se + "String"];
281             }
282             for (attr in markerCounter) if (markerCounter[has](attr) && !markerCounter[attr]) {
283                 var item = R._g.doc.getElementById(attr);
284                 item && item.parentNode.removeChild(item);
285             }
286         }
287     },
288     dasharray = {
289         "": [0],
290         "none": [0],
291         "-": [3, 1],
292         ".": [1, 1],
293         "-.": [3, 1, 1, 1],
294         "-..": [3, 1, 1, 1, 1, 1],
295         ". ": [1, 3],
296         "- ": [4, 3],
297         "--": [8, 3],
298         "- .": [4, 3, 1, 3],
299         "--.": [8, 3, 1, 3],
300         "--..": [8, 3, 1, 3, 1, 3]
301     },
302     addDashes = function (o, value, params) {
303         value = dasharray[Str(value).toLowerCase()];
304         if (value) {
305             var width = o.attrs["stroke-width"] || "1",
306                 butt = {round: width, square: width, butt: 0}[o.attrs["stroke-linecap"] || params["stroke-linecap"]] || 0,
307                 dashes = [],
308                 i = value.length;
309             while (i--) {
310                 dashes[i] = value[i] * width + ((i % 2) ? 1 : -1) * butt;
311             }
312             $(o.node, {"stroke-dasharray": dashes.join(",")});
313         }
314     },
315     setFillAndStroke = function (o, params) {
316         var node = o.node,
317             attrs = o.attrs,
318             vis = node.style.visibility;
319         node.style.visibility = "hidden";
320         for (var att in params) {
321             if (params[has](att)) {
322                 if (!R._availableAttrs[has](att)) {
323                     continue;
324                 }
325                 var value = params[att];
326                 attrs[att] = value;
327                 switch (att) {
328                     case "blur":
329                         o.blur(value);
330                         break;
331                     case "href":
332                     case "title":
333                     case "target":
334                         var pn = node.parentNode;
335                         if (pn.tagName.toLowerCase() != "a") {
336                             var hl = $("a");
337                             pn.insertBefore(hl, node);
338                             hl.appendChild(node);
339                             pn = hl;
340                         }
341                         if (att == "target" && value == "blank") {
342                             pn.setAttributeNS(xlink, "show", "new");
343                         } else {
344                             pn.setAttributeNS(xlink, att, value);
345                         }
346                         break;
347                     case "cursor":
348                         node.style.cursor = value;
349                         break;
350                     case "transform":
351                         o.transform(value);
352                         break;
353                     case "arrow-start":
354                         addArrow(o, value);
355                         break;
356                     case "arrow-end":
357                         addArrow(o, value, 1);
358                         break;
359                     case "clip-rect":
360                         var rect = Str(value).split(separator);
361                         if (rect.length == 4) {
362                             o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode);
363                             var el = $("clipPath"),
364                                 rc = $("rect");
365                             el.id = R._createUUID();
366                             $(rc, {
367                                 x: rect[0],
368                                 y: rect[1],
369                                 width: rect[2],
370                                 height: rect[3]
371                             });
372                             el.appendChild(rc);
373                             o.paper.defs.appendChild(el);
374                             $(node, {"clip-path": "url(#" + el.id + ")"});
375                             o.clip = rc;
376                         }
377                         if (!value) {
378                             var clip = R._g.doc.getElementById(node.getAttribute("clip-path").replace(/(^url\(#|\)$)/g, E));
379                             clip && clip.parentNode.removeChild(clip);
380                             $(node, {"clip-path": E});
381                             delete o.clip;
382                         }
383                     break;
384                     case "path":
385                         if (o.type == "path") {
386                             $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
387                             o._.dirty = 1;
388                             if (o._.arrows) {
389                                 "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
390                                 "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
391                             }
392                         }
393                         break;
394                     case "width":
395                         node.setAttribute(att, value);
396                         o._.dirty = 1;
397                         if (attrs.fx) {
398                             att = "x";
399                             value = attrs.x;
400                         } else {
401                             break;
402                         }
403                     case "x":
404                         if (attrs.fx) {
405                             value = -attrs.x - (attrs.width || 0);
406                         }
407                     case "rx":
408                         if (att == "rx" && o.type == "rect") {
409                             break;
410                         }
411                     case "cx":
412                         node.setAttribute(att, value);
413                         o.pattern && updatePosition(o);
414                         o._.dirty = 1;
415                         break;
416                     case "height":
417                         node.setAttribute(att, value);
418                         o._.dirty = 1;
419                         if (attrs.fy) {
420                             att = "y";
421                             value = attrs.y;
422                         } else {
423                             break;
424                         }
425                     case "y":
426                         if (attrs.fy) {
427                             value = -attrs.y - (attrs.height || 0);
428                         }
429                     case "ry":
430                         if (att == "ry" && o.type == "rect") {
431                             break;
432                         }
433                     case "cy":
434                         node.setAttribute(att, value);
435                         o.pattern && updatePosition(o);
436                         o._.dirty = 1;
437                         break;
438                     case "r":
439                         if (o.type == "rect") {
440                             $(node, {rx: value, ry: value});
441                         } else {
442                             node.setAttribute(att, value);
443                         }
444                         o._.dirty = 1;
445                         break;
446                     case "src":
447                         if (o.type == "image") {
448                             node.setAttributeNS(xlink, "href", value);
449                         }
450                         break;
451                     case "stroke-width":
452                         if (o._.sx != 1 || o._.sy != 1) {
453                             value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
454                         }
455                         if (o.paper._vbSize) {
456                             value *= o.paper._vbSize;
457                         }
458                         node.setAttribute(att, value);
459                         if (attrs["stroke-dasharray"]) {
460                             addDashes(o, attrs["stroke-dasharray"], params);
461                         }
462                         if (o._.arrows) {
463                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
464                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
465                         }
466                         break;
467                     case "stroke-dasharray":
468                         addDashes(o, value, params);
469                         break;
470                     case "fill":
471                         var isURL = Str(value).match(R._ISURL);
472                         if (isURL) {
473                             el = $("pattern");
474                             var ig = $("image");
475                             el.id = R._createUUID();
476                             $(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1});
477                             $(ig, {x: 0, y: 0, "xlink:href": isURL[1]});
478                             el.appendChild(ig);
479
480                             (function (el) {
481                                 R._preload(isURL[1], function () {
482                                     var w = this.offsetWidth,
483                                         h = this.offsetHeight;
484                                     $(el, {width: w, height: h});
485                                     $(ig, {width: w, height: h});
486                                     o.paper.safari();
487                                 });
488                             })(el);
489                             o.paper.defs.appendChild(el);
490                             node.style.fill = "url(#" + el.id + ")";
491                             $(node, {fill: "url(#" + el.id + ")"});
492                             o.pattern = el;
493                             o.pattern && updatePosition(o);
494                             break;
495                         }
496                         var clr = R.getRGB(value);
497                         if (!clr.error) {
498                             delete params.gradient;
499                             delete attrs.gradient;
500                             !R.is(attrs.opacity, "undefined") &&
501                                 R.is(params.opacity, "undefined") &&
502                                 $(node, {opacity: attrs.opacity});
503                             !R.is(attrs["fill-opacity"], "undefined") &&
504                                 R.is(params["fill-opacity"], "undefined") &&
505                                 $(node, {"fill-opacity": attrs["fill-opacity"]});
506                         } else if ((o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value)) {
507                             if ("opacity" in attrs || "fill-opacity" in attrs) {
508                                 var gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
509                                 if (gradient) {
510                                     var stops = gradient.getElementsByTagName("stop");
511                                     $(stops[stops.length - 1], {"stop-opacity": ("opacity" in attrs ? attrs.opacity : 1) * ("fill-opacity" in attrs ? attrs["fill-opacity"] : 1)});
512                                 }
513                             }
514                             attrs.gradient = value;
515                             attrs.fill = "none";
516                             break;
517                         }
518                         clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
519                     case "stroke":
520                         clr = R.getRGB(value);
521                         node.setAttribute(att, clr.hex);
522                         att == "stroke" && clr[has]("opacity") && $(node, {"stroke-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity});
523                         if (att == "stroke" && o._.arrows) {
524                             "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
525                             "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
526                         }
527                         break;
528                     case "gradient":
529                         (o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, value);
530                         break;
531                     case "opacity":
532                         if (attrs.gradient && !attrs[has]("stroke-opacity")) {
533                             $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
534                         }
535                         // fall
536                     case "fill-opacity":
537                         if (attrs.gradient) {
538                             gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
539                             if (gradient) {
540                                 stops = gradient.getElementsByTagName("stop");
541                                 $(stops[stops.length - 1], {"stop-opacity": value});
542                             }
543                             break;
544                         }
545                     default:
546                         att == "font-size" && (value = toInt(value, 10) + "px");
547                         var cssrule = att.replace(/(\-.)/g, function (w) {
548                             return w.substring(1).toUpperCase();
549                         });
550                         node.style[cssrule] = value;
551                         o._.dirty = 1;
552                         node.setAttribute(att, value);
553                         break;
554                 }
555             }
556         }
557
558         tuneText(o, params);
559         node.style.visibility = vis;
560     },
561     leading = 1.2,
562     tuneText = function (el, params) {
563         if (el.type != "text" || !(params[has]("text") || params[has]("font") || params[has]("font-size") || params[has]("x") || params[has]("y"))) {
564             return;
565         }
566         var a = el.attrs,
567             node = el.node,
568             fontSize = node.firstChild ? toInt(R._g.doc.defaultView.getComputedStyle(node.firstChild, E).getPropertyValue("font-size"), 10) : 10;
569
570         if (params[has]("text")) {
571             a.text = params.text;
572             while (node.firstChild) {
573                 node.removeChild(node.firstChild);
574             }
575             var texts = Str(params.text).split("\n"),
576                 tspans = [],
577                 tspan;
578             for (var i = 0, ii = texts.length; i < ii; i++) {
579                 tspan = $("tspan");
580                 i && $(tspan, {dy: fontSize * leading, x: a.x});
581                 tspan.appendChild(R._g.doc.createTextNode(texts[i]));
582                 node.appendChild(tspan);
583                 tspans[i] = tspan;
584             }
585         } else {
586             tspans = node.getElementsByTagName("tspan");
587             for (i = 0, ii = tspans.length; i < ii; i++) if (i) {
588                 $(tspans[i], {dy: fontSize * leading, x: a.x});
589             } else {
590                 $(tspans[0], {dy: 0});
591             }
592         }
593         $(node, {x: a.x, y: a.y});
594         el._.dirty = 1;
595         var bb = el._getBBox(),
596             dif = a.y - (bb.y + bb.height / 2);
597         dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
598     },
599     Element = function (node, svg) {
600         var X = 0,
601             Y = 0;
602         /*\
603          * Element.node
604          [ property (object) ]
605          **
606          * Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
607          **
608          * Note: Don’t mess with it.
609          > Usage
610          | // draw a circle at coordinate 10,10 with radius of 10
611          | var c = paper.circle(10, 10, 10);
612          | c.node.onclick = function () {
613          |     c.attr("fill", "red");
614          | };
615         \*/
616         this[0] = this.node = node;
617         /*\
618          * Element.raphael
619          [ property (object) ]
620          **
621          * Internal reference to @Raphael object. In case it is not available.
622          > Usage
623          | Raphael.el.red = function () {
624          |     var hsb = this.paper.raphael.rgb2hsb(this.attr("fill"));
625          |     hsb.h = 1;
626          |     this.attr({fill: this.paper.raphael.hsb2rgb(hsb).hex});
627          | }
628         \*/
629         node.raphael = true;
630         /*\
631          * Element.id
632          [ property (number) ]
633          **
634          * Unique id of the element. Especially usesful when you want to listen to events of the element, 
635          * because all events are fired in format `<module>.<action>.<id>`. Also useful for @Paper.getById method.
636         \*/
637         this.id = R._oid++;
638         node.raphaelid = this.id;
639         this.matrix = R.matrix();
640         this.realPath = null;
641         /*\
642          * Element.paper
643          [ property (object) ]
644          **
645          * Internal reference to “paper” where object drawn. Mainly for use in plugins and element extensions.
646          > Usage
647          | Raphael.el.cross = function () {
648          |     this.attr({fill: "red"});
649          |     this.paper.path("M10,10L50,50M50,10L10,50")
650          |         .attr({stroke: "red"});
651          | }
652         \*/
653         this.paper = svg;
654         this.attrs = this.attrs || {};
655         this._ = {
656             transform: [],
657             sx: 1,
658             sy: 1,
659             deg: 0,
660             dx: 0,
661             dy: 0,
662             dirty: 1
663         };
664         !svg.bottom && (svg.bottom = this);
665         /*\
666          * Element.prev
667          [ property (object) ]
668          **
669          * Reference to the previous element in the hierarchy.
670         \*/
671         this.prev = svg.top;
672         svg.top && (svg.top.next = this);
673         svg.top = this;
674         /*\
675          * Element.next
676          [ property (object) ]
677          **
678          * Reference to the next element in the hierarchy.
679         \*/
680         this.next = null;
681     },
682     elproto = R.el;
683
684     Element.prototype = elproto;
685     elproto.constructor = Element;
686
687     R._engine.path = function (pathString, SVG) {
688         var el = $("path");
689         SVG.canvas && SVG.canvas.appendChild(el);
690         var p = new Element(el, SVG);
691         p.type = "path";
692         setFillAndStroke(p, {
693             fill: "none",
694             stroke: "#000",
695             path: pathString
696         });
697         return p;
698     };
699     /*\
700      * Element.rotate
701      [ method ]
702      **
703      * Adds rotation by given angle around given point to the list of
704      * transformations of the element.
705      > Parameters
706      - deg (number) angle in degrees
707      - cx (number) #optional x coordinate of the centre of rotation
708      - cy (number) #optional y coordinate of the centre of rotation
709      * If cx & cy aren’t specified centre of the shape is used as a point of rotation.
710      = (object) @Element
711     \*/
712     elproto.rotate = function (deg, cx, cy) {
713         if (this.removed) {
714             return this;
715         }
716         deg = Str(deg).split(separator);
717         if (deg.length - 1) {
718             cx = toFloat(deg[1]);
719             cy = toFloat(deg[2]);
720         }
721         deg = toFloat(deg[0]);
722         (cy == null) && (cx = cy);
723         if (cx == null || cy == null) {
724             var bbox = this.getBBox(1);
725             cx = bbox.x + bbox.width / 2;
726             cy = bbox.y + bbox.height / 2;
727         }
728         this.transform(this._.transform.concat([["r", deg, cx, cy]]));
729         return this;
730     };
731     /*\
732      * Element.scale
733      [ method ]
734      **
735      * Adds scale by given amount relative to given point to the list of
736      * transformations of the element.
737      > Parameters
738      - sx (number) horisontal scale amount
739      - sy (number) vertical scale amount
740      - cx (number) #optional x coordinate of the centre of scale
741      - cy (number) #optional y coordinate of the centre of scale
742      * If cx & cy aren’t specified centre of the shape is used instead.
743      = (object) @Element
744     \*/
745     elproto.scale = function (sx, sy, cx, cy) {
746         if (this.removed) {
747             return this;
748         }
749         sx = Str(sx).split(separator);
750         if (sx.length - 1) {
751             sy = toFloat(sx[1]);
752             cx = toFloat(sx[2]);
753             cy = toFloat(sx[3]);
754         }
755         sx = toFloat(sx[0]);
756         (sy == null) && (sy = sx);
757         (cy == null) && (cx = cy);
758         if (cx == null || cy == null) {
759             var bbox = this.getBBox(1);
760         }
761         cx = cx == null ? bbox.x + bbox.width / 2 : cx;
762         cy = cy == null ? bbox.y + bbox.height / 2 : cy;
763         this.transform(this._.transform.concat([["s", sx, sy, cx, cy]]));
764         return this;
765     };
766     /*\
767      * Element.translate
768      [ method ]
769      **
770      * Adds translation by given amount to the list of transformations of the element.
771      > Parameters
772      - dx (number) horisontal shift
773      - dy (number) vertical shift
774      = (object) @Element
775     \*/
776     elproto.translate = function (dx, dy) {
777         if (this.removed) {
778             return this;
779         }
780         dx = Str(dx).split(separator);
781         if (dx.length - 1) {
782             dy = toFloat(dx[1]);
783         }
784         dx = toFloat(dx[0]) || 0;
785         dy = +dy || 0;
786         this.transform(this._.transform.concat([["t", dx, dy]]));
787         return this;
788     };
789     /*\
790      * Element.transform
791      [ method ]
792      **
793      * Adds transformation to the element which is separate to other attributes,
794      * i.e. translation doesn’t change `x` or `y` of the rectange. The format
795      * of transformation string is similar to the path string syntax:
796      | "t100,100r30,100,100s2,2,100,100r45s1.5"
797      * Each letter is a command. There are four commands: `t` is for translate, `r` is for rotate, `s` is for
798      * scale and `m` is for matrix.
799      *
800      * So, the example line above could be read like “translate by 100, 100; rotate 30° around 100, 100; scale twice around 100, 100;
801      * rotate 45° around centre; scale 1.5 times relative to centre”. As you can see rotate and scale commands have origin
802      * coordinates as optional parameters, the default is the centre point of the element.
803      * Matrix accepts six parameters.
804      > Usage
805      | var el = paper.rect(10, 20, 300, 200);
806      | // translate 100, 100, rotate 45°, translate -100, 0
807      | el.transform("t100,100r45t-100,0");
808      | // if you want you can append or prepend transformations
809      | el.transform("...t50,50");
810      | el.transform("s2...");
811      | // or even wrap
812      | el.transform("t50,50...t-50-50");
813      | // to reset transformation call method with empty string
814      | el.transform("");
815      | // to get current value call it without parameters
816      | console.log(el.transform());
817      > Parameters
818      - tstr (string) #optional transformation string
819      * If tstr isn’t specified
820      = (string) current transformation string
821      * else
822      = (object) @Element
823     \*/
824     elproto.transform = function (tstr) {
825         var _ = this._;
826         if (tstr == null) {
827             return _.transform;
828         }
829         R._extractTransform(this, tstr);
830
831         this.clip && $(this.clip, {transform: this.matrix.invert()});
832         this.pattern && updatePosition(this);
833         this.node && $(this.node, {transform: this.matrix});
834     
835         if (_.sx != 1 || _.sy != 1) {
836             var sw = this.attrs[has]("stroke-width") ? this.attrs["stroke-width"] : 1;
837             this.attr({"stroke-width": sw});
838         }
839
840         return this;
841     };
842     /*\
843      * Element.hide
844      [ method ]
845      **
846      * Makes element invisible. See @Element.show.
847      = (object) @Element
848     \*/
849     elproto.hide = function () {
850         !this.removed && this.paper.safari(this.node.style.display = "none");
851         return this;
852     };
853     /*\
854      * Element.show
855      [ method ]
856      **
857      * Makes element visible. See @Element.hide.
858      = (object) @Element
859     \*/
860     elproto.show = function () {
861         !this.removed && this.paper.safari(this.node.style.display = "");
862         return this;
863     };
864     /*\
865      * Element.remove
866      [ method ]
867      **
868      * Removes element form the paper.
869     \*/
870     elproto.remove = function () {
871         if (this.removed) {
872             return;
873         }
874         eve.unbind("*.*." + this.id);
875         R._tear(this, this.paper);
876         this.node.parentNode.removeChild(this.node);
877         for (var i in this) {
878             delete this[i];
879         }
880         this.removed = true;
881     };
882     elproto._getBBox = function () {
883         if (this.node.style.display == "none") {
884             this.show();
885             var hide = true;
886         }
887         var bbox = {};
888         try {
889             bbox = this.node.getBBox();
890         } catch(e) {
891             // Firefox 3.0.x plays badly here
892         } finally {
893             bbox = bbox || {};
894         }
895         hide && this.hide();
896         return bbox;
897     };
898     /*\
899      * Element.attr
900      [ method ]
901      **
902      * Sets the attributes of the element.
903      > Parameters
904      - attrName (string) attribute’s name
905      - value (string) value
906      * or
907      - params (object) object of name/value pairs
908      * or
909      - attrName (string) attribute’s name
910      * or
911      - attrNames (array) in this case method returns array of current values for given attribute names
912      = (object) @Element if attrsName & value or params are passed in.
913      = (...) value of the attribute if only attrsName is passed in.
914      = (array) array of values of the attribute if attrsNames is passed in.
915      = (object) object of attributes if nothing is passed in.
916      > Possible parameters
917      # <p>Please refer to the <a href="http://www.w3.org/TR/SVG/" title="The W3C Recommendation for the SVG language describes these properties in detail.">SVG specification</a> for an explanation of these parameters.</p>
918      o arrow-end (string) arrowhead on the end of the path. The format for string is `<type>[-<width>[-<length>]]`. Possible types: `classic`, `block`, `open`, `oval`, `diamond`, `none`, width: `wide`, `narrow`, `midium`, length: `long`, `short`, `midium`.
919      o clip-rect (string) comma or space separated values: x, y, width and height
920      o cursor (string) CSS type of the cursor
921      o cx (number)
922      o cy (number)
923      o fill (string) colour, gradient or image
924      o fill-opacity (number)
925      o font (string)
926      o font-family (string)
927      o font-size (number) font size in pixels
928      o font-weight (string)
929      o height (number)
930      o href (string) URL, if specified element behaves as hyperlink
931      o opacity (number)
932      o path (string) SVG path string format
933      o r (number)
934      o rx (number)
935      o ry (number)
936      o src (string) image URL, only works for @Element.image element
937      o stroke (string) stroke colour
938      o stroke-dasharray (string) [“”, “`-`”, “`.`”, “`-.`”, “`-..`”, “`. `”, “`- `”, “`--`”, “`- .`”, “`--.`”, “`--..`”]
939      o stroke-linecap (string) [“`butt`”, “`square`”, “`round`”]
940      o stroke-linejoin (string) [“`bevel`”, “`round`”, “`miter`”]
941      o stroke-miterlimit (number)
942      o stroke-opacity (number)
943      o stroke-width (number) stroke width in pixels, default is '1'
944      o target (string) used with href
945      o text (string) contents of the text element. Use `\n` for multiline text
946      o text-anchor (string) [“`start`”, “`middle`”, “`end`”], default is “`middle`”
947      o title (string) will create tooltip with a given text
948      o transform (string) see @Element.transform
949      o width (number)
950      o x (number)
951      o y (number)
952      > Gradients
953      * Linear gradient format: “`‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`90-#fff-#000`” – 90°
954      * gradient from white to black or “`0-#fff-#f00:20-#000`” – 0° gradient from white via red (at 20%) to black.
955      *
956      * radial gradient: “`r[(‹fx›, ‹fy›)]‹colour›[-‹colour›[:‹offset›]]*-‹colour›`”, example: “`r#fff-#000`” –
957      * gradient from white to black or “`r(0.25, 0.75)#fff-#000`” – gradient from white to black with focus point
958      * at 0.25, 0.75. Focus point coordinates are in 0..1 range. Radial gradients can only be applied to circles and ellipses.
959      > Path String
960      # <p>Please refer to <a href="http://www.w3.org/TR/SVG/paths.html#PathData" title="Details of a path’s data attribute’s format are described in the SVG specification.">SVG documentation regarding path string</a>. Raphaël fully supports it.</p>
961      > Colour Parsing
962      # <ul>
963      #     <li>Colour name (“<code>red</code>”, “<code>green</code>”, “<code>cornflowerblue</code>”, etc)</li>
964      #     <li>#••• — shortened HTML colour: (“<code>#000</code>”, “<code>#fc0</code>”, etc)</li>
965      #     <li>#•••••• — full length HTML colour: (“<code>#000000</code>”, “<code>#bd2300</code>”)</li>
966      #     <li>rgb(•••, •••, •••) — red, green and blue channels’ values: (“<code>rgb(200,&nbsp;100,&nbsp;0)</code>”)</li>
967      #     <li>rgb(•••%, •••%, •••%) — same as above, but in %: (“<code>rgb(100%,&nbsp;175%,&nbsp;0%)</code>”)</li>
968      #     <li>rgba(•••, •••, •••, •••) — red, green and blue channels’ values: (“<code>rgba(200,&nbsp;100,&nbsp;0, .5)</code>”)</li>
969      #     <li>rgba(•••%, •••%, •••%, •••%) — same as above, but in %: (“<code>rgba(100%,&nbsp;175%,&nbsp;0%, 50%)</code>”)</li>
970      #     <li>hsb(•••, •••, •••) — hue, saturation and brightness values: (“<code>hsb(0.5,&nbsp;0.25,&nbsp;1)</code>”)</li>
971      #     <li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
972      #     <li>hsba(•••, •••, •••, •••) — same as above, but with opacity</li>
973      #     <li>hsl(•••, •••, •••) — almost the same as hsb, see <a href="http://en.wikipedia.org/wiki/HSL_and_HSV" title="HSL and HSV - Wikipedia, the free encyclopedia">Wikipedia page</a></li>
974      #     <li>hsl(•••%, •••%, •••%) — same as above, but in %</li>
975      #     <li>hsla(•••, •••, •••, •••) — same as above, but with opacity</li>
976      #     <li>Optionally for hsb and hsl you could specify hue as a degree: “<code>hsl(240deg,&nbsp;1,&nbsp;.5)</code>” or, if you want to go fancy, “<code>hsl(240°,&nbsp;1,&nbsp;.5)</code>”</li>
977      # </ul>
978     \*/
979     elproto.attr = function (name, value) {
980         if (this.removed) {
981             return this;
982         }
983         if (name == null) {
984             var res = {};
985             for (var a in this.attrs) if (this.attrs[has](a)) {
986                 res[a] = this.attrs[a];
987             }
988             res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
989             res.transform = this._.transform;
990             return res;
991         }
992         if (value == null && R.is(name, "string")) {
993             if (name == "fill" && this.attrs.fill == "none" && this.attrs.gradient) {
994                 return this.attrs.gradient;
995             }
996             if (name == "transform") {
997                 return this._.transform;
998             }
999             var names = name.split(separator),
1000                 out = {};
1001             for (var i = 0, ii = names.length; i < ii; i++) {
1002                 name = names[i];
1003                 if (name in this.attrs) {
1004                     out[name] = this.attrs[name];
1005                 } else if (R.is(this.paper.customAttributes[name], "function")) {
1006                     out[name] = this.paper.customAttributes[name].def;
1007                 } else {
1008                     out[name] = R._availableAttrs[name];
1009                 }
1010             }
1011             return ii - 1 ? out : out[names[0]];
1012         }
1013         if (value == null && R.is(name, "array")) {
1014             out = {};
1015             for (i = 0, ii = name.length; i < ii; i++) {
1016                 out[name[i]] = this.attr(name[i]);
1017             }
1018             return out;
1019         }
1020         if (value != null) {
1021             var params = {};
1022             params[name] = value;
1023         } else if (name != null && R.is(name, "object")) {
1024             params = name;
1025         }
1026         for (var key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](key) && R.is(this.paper.customAttributes[key], "function")) {
1027             var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
1028             this.attrs[key] = params[key];
1029             for (var subkey in par) if (par[has](subkey)) {
1030                 params[subkey] = par[subkey];
1031             }
1032         }
1033         setFillAndStroke(this, params);
1034         return this;
1035     };
1036     /*\
1037      * Element.toFront
1038      [ method ]
1039      **
1040      * Moves the element so it is the closest to the viewer’s eyes, on top of other elements.
1041      = (object) @Element
1042     \*/
1043     elproto.toFront = function () {
1044         if (this.removed) {
1045             return this;
1046         }
1047         this.node.parentNode.appendChild(this.node);
1048         var svg = this.paper;
1049         svg.top != this && R._tofront(this, svg);
1050         return this;
1051     };
1052     /*\
1053      * Element.toBack
1054      [ method ]
1055      **
1056      * Moves the element so it is the furthest from the viewer’s eyes, behind other elements.
1057      = (object) @Element
1058     \*/
1059     elproto.toBack = function () {
1060         if (this.removed) {
1061             return this;
1062         }
1063         if (this.node.parentNode.firstChild != this.node) {
1064             this.node.parentNode.insertBefore(this.node, this.node.parentNode.firstChild);
1065             R._toback(this, this.paper);
1066             var svg = this.paper;
1067         }
1068         return this;
1069     };
1070     /*\
1071      * Element.insertAfter
1072      [ method ]
1073      **
1074      * Inserts current object after the given one.
1075      = (object) @Element
1076     \*/
1077     elproto.insertAfter = function (element) {
1078         if (this.removed) {
1079             return this;
1080         }
1081         var node = element.node || element[element.length - 1].node;
1082         if (node.nextSibling) {
1083             node.parentNode.insertBefore(this.node, node.nextSibling);
1084         } else {
1085             node.parentNode.appendChild(this.node);
1086         }
1087         R._insertafter(this, element, this.paper);
1088         return this;
1089     };
1090     /*\
1091      * Element.insertBefore
1092      [ method ]
1093      **
1094      * Inserts current object before the given one.
1095      = (object) @Element
1096     \*/
1097     elproto.insertBefore = function (element) {
1098         if (this.removed) {
1099             return this;
1100         }
1101         var node = element.node || element[0].node;
1102         node.parentNode.insertBefore(this.node, node);
1103         R._insertbefore(this, element, this.paper);
1104         return this;
1105     };
1106     elproto.blur = function (size) {
1107         // Experimental. No Safari support. Use it on your own risk.
1108         var t = this;
1109         if (+size !== 0) {
1110             var fltr = $("filter"),
1111                 blur = $("feGaussianBlur");
1112             t.attrs.blur = size;
1113             fltr.id = R._createUUID();
1114             $(blur, {stdDeviation: +size || 1.5});
1115             fltr.appendChild(blur);
1116             t.paper.defs.appendChild(fltr);
1117             t._blur = fltr;
1118             $(t.node, {filter: "url(#" + fltr.id + ")"});
1119         } else {
1120             if (t._blur) {
1121                 t._blur.parentNode.removeChild(t._blur);
1122                 delete t._blur;
1123                 delete t.attrs.blur;
1124             }
1125             t.node.removeAttribute("filter");
1126         }
1127     };
1128     R._engine.circle = function (svg, x, y, r) {
1129         var el = $("circle");
1130         svg.canvas && svg.canvas.appendChild(el);
1131         var res = new Element(el, svg);
1132         res.attrs = {cx: x, cy: y, r: r, fill: "none", stroke: "#000"};
1133         res.type = "circle";
1134         $(el, res.attrs);
1135         return res;
1136     };
1137     R._engine.rect = function (svg, x, y, w, h, r) {
1138         var el = $("rect");
1139         svg.canvas && svg.canvas.appendChild(el);
1140         var res = new Element(el, svg);
1141         res.attrs = {x: x, y: y, width: w, height: h, r: r || 0, rx: r || 0, ry: r || 0, fill: "none", stroke: "#000"};
1142         res.type = "rect";
1143         $(el, res.attrs);
1144         return res;
1145     };
1146     R._engine.ellipse = function (svg, x, y, rx, ry) {
1147         var el = $("ellipse");
1148         svg.canvas && svg.canvas.appendChild(el);
1149         var res = new Element(el, svg);
1150         res.attrs = {cx: x, cy: y, rx: rx, ry: ry, fill: "none", stroke: "#000"};
1151         res.type = "ellipse";
1152         $(el, res.attrs);
1153         return res;
1154     };
1155     R._engine.image = function (svg, src, x, y, w, h) {
1156         var el = $("image");
1157         $(el, {x: x, y: y, width: w, height: h, preserveAspectRatio: "none"});
1158         el.setAttributeNS(xlink, "href", src);
1159         svg.canvas && svg.canvas.appendChild(el);
1160         var res = new Element(el, svg);
1161         res.attrs = {x: x, y: y, width: w, height: h, src: src};
1162         res.type = "image";
1163         return res;
1164     };
1165     R._engine.text = function (svg, x, y, text) {
1166         var el = $("text");
1167         // $(el, {x: x, y: y, "text-anchor": "middle"});
1168         svg.canvas && svg.canvas.appendChild(el);
1169         var res = new Element(el, svg);
1170         res.attrs = {
1171             x: x,
1172             y: y,
1173             "text-anchor": "middle",
1174             text: text,
1175             font: R._availableAttrs.font,
1176             stroke: "none",
1177             fill: "#000"
1178         };
1179         res.type = "text";
1180         setFillAndStroke(res, res.attrs);
1181         return res;
1182     };
1183     R._engine.setSize = function (width, height) {
1184         this.width = width || this.width;
1185         this.height = height || this.height;
1186         this.canvas.setAttribute("width", this.width);
1187         this.canvas.setAttribute("height", this.height);
1188         if (this._viewBox) {
1189             this.setViewBox.apply(this, this._viewBox);
1190         }
1191         return this;
1192     };
1193     R._engine.create = function () {
1194         var con = R._getContainer.apply(0, arguments),
1195             container = con && con.container,
1196             x = con.x,
1197             y = con.y,
1198             width = con.width,
1199             height = con.height;
1200         if (!container) {
1201             throw new Error("SVG container not found.");
1202         }
1203         var cnvs = $("svg"),
1204             css = "overflow:hidden;",
1205             isFloating;
1206         x = x || 0;
1207         y = y || 0;
1208         width = width || 512;
1209         height = height || 342;
1210         $(cnvs, {
1211             height: height,
1212             version: 1.1,
1213             width: width,
1214             xmlns: "http://www.w3.org/2000/svg"
1215         });
1216         if (container == 1) {
1217             cnvs.style.cssText = css + "position:absolute;left:" + x + "px;top:" + y + "px";
1218             R._g.doc.body.appendChild(cnvs);
1219             isFloating = 1;
1220         } else {
1221             cnvs.style.cssText = css + "position:relative";
1222             if (container.firstChild) {
1223                 container.insertBefore(cnvs, container.firstChild);
1224             } else {
1225                 container.appendChild(cnvs);
1226             }
1227         }
1228         container = new R._Paper;
1229         container.width = width;
1230         container.height = height;
1231         container.canvas = cnvs;
1232         // plugins.call(container, container, R.fn);
1233         container.clear();
1234         container._left = container._top = 0;
1235         isFloating && (container.renderfix = function () {});
1236         container.renderfix();
1237         return container;
1238     };
1239     R._engine.setViewBox = function (x, y, w, h, fit) {
1240         eve("setViewBox", this, this._viewBox, [x, y, w, h, fit]);
1241         var size = mmax(w / this.width, h / this.height),
1242             top = this.top,
1243             aspectRatio = fit ? "meet" : "xMinYMin",
1244             vb,
1245             sw;
1246         if (x == null) {
1247             if (this._vbSize) {
1248                 size = 1;
1249             }
1250             delete this._vbSize;
1251             vb = "0 0 " + this.width + S + this.height;
1252         } else {
1253             this._vbSize = size;
1254             vb = x + S + y + S + w + S + h;
1255         }
1256         $(this.canvas, {
1257             viewBox: vb,
1258             preserveAspectRatio: aspectRatio
1259         });
1260         while (size && top) {
1261             sw = "stroke-width" in top.attrs ? top.attrs["stroke-width"] : 1;
1262             top.attr({"stroke-width": sw});
1263             top._.dirty = 1;
1264             top._.dirtyT = 1;
1265             top = top.prev;
1266         }
1267         this._viewBox = [x, y, w, h, !!fit];
1268         return this;
1269     };
1270     /*\
1271      * Paper.renderfix
1272      [ method ]
1273      **
1274      * Fixes the issue of Firefox and IE9 regarding subpixel rendering. If paper is dependant
1275      * on other elements after reflow it could shift half pixel which cause for lines to lost their crispness.
1276      * This method fixes the issue.
1277      **
1278        Special thanks to Mariusz Nowak (http://www.medikoo.com/) for this method.
1279     \*/
1280     R.prototype.renderfix = function () {
1281         var cnvs = this.canvas,
1282             s = cnvs.style,
1283             pos = cnvs.getScreenCTM(),
1284             left = -pos.e % 1,
1285             top = -pos.f % 1;
1286         if (left || top) {
1287             if (left) {
1288                 this._left = (this._left + left) % 1;
1289                 s.left = this._left + "px";
1290             }
1291             if (top) {
1292                 this._top = (this._top + top) % 1;
1293                 s.top = this._top + "px";
1294             }
1295         }
1296     };
1297     /*\
1298      * Paper.clear
1299      [ method ]
1300      **
1301      * Clears the paper, i.e. removes all the elements.
1302     \*/
1303     R.prototype.clear = function () {
1304         R.eve("clear", this);
1305         var c = this.canvas;
1306         while (c.firstChild) {
1307             c.removeChild(c.firstChild);
1308         }
1309         this.bottom = this.top = null;
1310         (this.desc = $("desc")).appendChild(R._g.doc.createTextNode("Created with Rapha\xebl " + R.version));
1311         c.appendChild(this.desc);
1312         c.appendChild(this.defs = $("defs"));
1313     };
1314     /*\
1315      * Paper.remove
1316      [ method ]
1317      **
1318      * Removes the paper from the DOM.
1319     \*/
1320     R.prototype.remove = function () {
1321         eve("remove", this);
1322         this.canvas.parentNode && this.canvas.parentNode.removeChild(this.canvas);
1323         for (var i in this) {
1324             this[i] = removed(i);
1325         }
1326     };
1327     var setproto = R.st;
1328     for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) {
1329         setproto[method] = (function (methodname) {
1330             return function () {
1331                 var arg = arguments;
1332                 return this.forEach(function (el) {
1333                     el[methodname].apply(el, arg);
1334                 });
1335             };
1336         })(method);
1337     }
1338 }(window.Raphael);