Lines Matching refs:paper

547         paper = {},
2503 tear = R._tear = function (el, paper) { argument
2504 el == paper.top && (paper.top = el.prev);
2505 el == paper.bottom && (paper.bottom = el.next);
2509 tofront = R._tofront = function (el, paper) { argument
2510 if (paper.top === el) {
2513 tear(el, paper);
2515 el.prev = paper.top;
2516 paper.top.next = el;
2517 paper.top = el;
2519 toback = R._toback = function (el, paper) { argument
2520 if (paper.bottom === el) {
2523 tear(el, paper);
2524 el.next = paper.bottom;
2526 paper.bottom.prev = el;
2527 paper.bottom = el;
2529 insertafter = R._insertafter = function (el, el2, paper) { argument
2530 tear(el, paper);
2531 el2 == paper.top && (paper.top = el);
2537 insertbefore = R._insertbefore = function (el, el2, paper) { argument
2538 tear(el, paper);
2539 el2 == paper.bottom && (paper.bottom = el);
3186 o = dragi.el.paper.getElementByPoint(x, y);
3931 var paper = this,
3932 svg = paper.canvas,
3951 target == paper.canvas.parentNode && (target = svg);
3952 target = target && target.raphael ? paper.getById(target.raphaelid) : null;
4127 var out = this.paper[this.type]().attr(this.attr());
4166 r = this.paper,
4549 i = that.paper.customAttributes[attr].length;
4585 R.svg && that && that.paper && that.paper.safari();
4792 if (availableAnimAttrs[has](attr) || element.paper.customAttributes[has](attr)) {
4890 i = element.paper.customAttributes[attr].length;
5152 function stopAnimation(paper) { argument
5153 … for (var i = 0; i < animationElements.length; i++) if (animationElements[i].el.paper == paper) {
5375 s = this.paper.set();
5386 var ret = this.paper.set();
5814 SVG = element.paper,
5901 p = o.paper,
6134 o.paper.defs.appendChild(el);
6219 if (o.paper._vbSize) {
6220 value *= o.paper._vbSize;
6250 o.paper.safari();
6253 o.paper.defs.appendChild(el);
6416 this.paper = svg;
6618 !this.removed && this.paper.safari(this.node.style.display = "none");
6629 !this.removed && this.paper.safari(this.node.style.display = "");
6642 var paper = this.paper;
6643 paper.__set__ && paper.__set__.exclude(this);
6646 paper.defs.removeChild(this.gradient);
6648 R._tear(this, paper);
6782 } else if (R.is(this.paper.customAttributes[name], "function")) {
6783 out[name] = this.paper.customAttributes[name].def;
6806 …for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](…
6807 var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
6832 var svg = this.paper;
6853 R._toback(this, this.paper);
6854 var svg = this.paper;
6874 R._insertafter(this, element, this.paper);
6890 R._insertbefore(this, element, this.paper);
6903 t.paper.defs.appendChild(fltr);
7334 dstyle.width = o.paper.width + "px";
7335 dstyle.height = o.paper.height + "px";
7460 res.paper.canvas.style.display = E;
7461 var span = res.paper.span,
7571 this.paper = vml;
7597 var vbs = this.paper._viewBoxShift,
7723 this.paper.__set__ && this.paper.__set__.exclude(this);
7725 R._tear(this, this.paper);
7756 } else if (R.is(this.paper.customAttributes[name], "function")) {
7757 out[name] = this.paper.customAttributes[name].def;
7781 …for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](…
7782 var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
7799 this.paper && this.paper.top != this && R._tofront(this, this.paper);
7808 R._toback(this, this.paper);
7824 R._insertafter(this, element, this.paper);
7835 R._insertbefore(this, element, this.paper);