Lines Matching refs:el

256             path: function (el) {  argument
257 return el.attr("path");
259 circle: function (el) { argument
260 var a = el.attrs;
263 ellipse: function (el) { argument
264 var a = el.attrs;
267 rect: function (el) { argument
268 var a = el.attrs;
271 image: function (el) { argument
272 var a = el.attrs;
275 text: function (el) { argument
276 var bbox = el._getBBox();
279 set : function(el) { argument
280 var bbox = el._getBBox();
2148 tear = R._tear = function (el, paper) { argument
2149 el == paper.top && (paper.top = el.prev);
2150 el == paper.bottom && (paper.bottom = el.next);
2151 el.next && (el.next.prev = el.prev);
2152 el.prev && (el.prev.next = el.next);
2154 tofront = R._tofront = function (el, paper) { argument
2155 if (paper.top === el) {
2158 tear(el, paper);
2159 el.next = null;
2160 el.prev = paper.top;
2161 paper.top.next = el;
2162 paper.top = el;
2164 toback = R._toback = function (el, paper) { argument
2165 if (paper.bottom === el) {
2168 tear(el, paper);
2169 el.next = paper.bottom;
2170 el.prev = null;
2171 paper.bottom.prev = el;
2172 paper.bottom = el;
2174 insertafter = R._insertafter = function (el, el2, paper) { argument
2175 tear(el, paper);
2176 el2 == paper.top && (paper.top = el);
2177 el2.next && (el2.next.prev = el);
2178 el.next = el2.next;
2179 el.prev = el2;
2180 el2.next = el;
2182 insertbefore = R._insertbefore = function (el, el2, paper) { argument
2183 tear(el, paper);
2184 el2 == paper.bottom && (paper.bottom = el);
2185 el2.prev && (el2.prev.next = el);
2186 el.prev = el2.prev;
2187 el2.prev = el;
2188 el.next = el2;
2204 el = { class in AnonymousFunction19fc41e65400
2212 extractTransform(el, transform);
2213 return el.matrix;
2230 extractTransform = R._extractTransform = function (el, tstr) { argument
2232 return el._.transform;
2234 tstr = Str(tstr).replace(/\.{3}|\u2026/g, el._.transform || E);
2241 _ = el._,
2268 bb = bb || el.getBBox(1);
2283 bb = bb || el.getBBox(1);
2302 el.matrix = m;
2312 el.matrix = m;
2794 if (touch.identifier == dragi.el._drag.id) {
2804 var node = dragi.el.node,
2811 o = dragi.el.paper.getElementByPoint(x, y);
2814 o && eve("raphael.drag.over." + dragi.el.id, dragi.el, o);
2817 …eve("raphael.drag.move." + dragi.el.id, dragi.move_scope || dragi.el, x - dragi.el._drag.x, y - dr…
2826 dragi.el._drag = {};
2827 …eve("raphael.drag.end." + dragi.el.id, dragi.end_scope || dragi.start_scope || dragi.move_scope ||…
2845 elproto = R.el = {};
3232 … drag.push({el: this, move_scope: move_scope, start_scope: start_scope, end_scope: end_scope});
3239 draggable.push({el: this, start: start});
3262 while (i--) if (draggable[i].el == this) {
3609 this.forEach(function (el) { argument
3610 if (R.isBBoxIntersect(el.getBBox(), bbox)) {
3611 set.push(el);
3680 this.forEach(function (el) { argument
3681 if (el.isPointInside(x, y)) {
3682 set.push(el);
4109 if (e.el.removed || e.paused) {
4119 that = e.el,
4204 (function(f, el, a) {
4206 eve("raphael.anim.frame." + el.id, el, a);
4207 eve("raphael.anim.finish." + el.id, el, a);
4208 R.is(f, "function") && f.call(el);
4217 e.el.attr(init);
4218 … runAnimation(e.anim, e.el, e.anim.percents[0], null, e.totalOrigin, e.repeat - 1);
4221 runAnimation(e.anim, e.el, e.next, null, e.totalOrigin, e.repeat);
4251 elproto.animateWith = function (el, anim, params, ms, easing, callback) { argument
4261 if (animationElements[i].anim == anim && animationElements[i].el == el) {
4400 if (e.el.id == element.id && e.anim == anim) {
4564 el: element, property in runAnimation.e
4727 if (e.el.id == this.id && (!anim || e.anim == anim)) {
4756 …for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!…
4776 …for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!…
4798 …for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.id == this.id && (!…
4806 … for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.paper == paper) {
4888 return this.forEach(function (el) { argument
4889 el[methodname][apply](el, arg);
4967 setproto.exclude = function (el) { argument
4968 for (var i = 0, ii = this.length; i < ii; i++) if (this[i] == el) {
4995 setproto.insertAfter = function (el) { argument
4998 this.items[i].insertAfter(el);
5066 this.forEach(function (el) { argument
5067 if (el.isPointInside(x, y)) {