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();
5815 SVG = element.paper,
5902 p = o.paper,
6128 o.paper.defs.appendChild(el);
6213 if (o.paper._vbSize) {
6214 value *= o.paper._vbSize;
6244 o.paper.safari();
6247 o.paper.defs.appendChild(el);
6410 this.paper = svg;
6612 !this.removed && this.paper.safari(this.node.style.display = "none");
6623 !this.removed && this.paper.safari(this.node.style.display = "");
6636 var paper = this.paper;
6637 paper.__set__ && paper.__set__.exclude(this);
6640 paper.defs.removeChild(this.gradient);
6642 R._tear(this, paper);
6776 } else if (R.is(this.paper.customAttributes[name], "function")) {
6777 out[name] = this.paper.customAttributes[name].def;
6800 …for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](…
6801 var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
6826 var svg = this.paper;
6847 R._toback(this, this.paper);
6848 var svg = this.paper;
6868 R._insertafter(this, element, this.paper);
6884 R._insertbefore(this, element, this.paper);
6897 t.paper.defs.appendChild(fltr);
7328 dstyle.width = o.paper.width + "px";
7329 dstyle.height = o.paper.height + "px";
7454 res.paper.canvas.style.display = E;
7455 var span = res.paper.span,
7565 this.paper = vml;
7591 var vbs = this.paper._viewBoxShift,
7717 this.paper.__set__ && this.paper.__set__.exclude(this);
7719 R._tear(this, this.paper);
7750 } else if (R.is(this.paper.customAttributes[name], "function")) {
7751 out[name] = this.paper.customAttributes[name].def;
7775 …for (key in this.paper.customAttributes) if (this.paper.customAttributes[has](key) && params[has](…
7776 var par = this.paper.customAttributes[key].apply(this, [].concat(params[key]));
7793 this.paper && this.paper.top != this && R._tofront(this, this.paper);
7802 R._toback(this, this.paper);
7818 R._insertafter(this, element, this.paper);
7829 R._insertbefore(this, element, this.paper);