Lines Matching refs:node

52             o = element.node,
160 node = o.node,
267 $(node, attr);
281 o._.arrows[se + "Path"] && $(node, {d: R.getSubpath(attrs.path, from, to)});
316 $(o.node, {"stroke-dasharray": dashes.join(",")});
319 $(o.node, {"stroke-dasharray": "none"});
323 var node = o.node,
325 vis = node.style.visibility;
326 node.style.visibility = "hidden";
339 var title = node.getElementsByTagName("title");
348 node.appendChild(title);
353 var pn = node.parentNode;
356 pn.insertBefore(hl, node);
357 hl.appendChild(node);
367 node.style.cursor = value;
393 $(node, {"clip-path": "url(#" + el.id + ")"});
397 var path = node.getAttribute("clip-path");
401 $(node, {"clip-path": E});
408 $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
417 node.setAttribute(att, value);
434 node.setAttribute(att, value);
439 node.setAttribute(att, value);
456 node.setAttribute(att, value);
462 $(node, {rx: value, ry: value});
464 node.setAttribute(att, value);
470 node.setAttributeNS(xlink, "href", value);
477 node.setAttribute(att, value);
508 $(node, {fill: "url(#" + el.id + ")"});
519 $(node, {opacity: attrs.opacity});
522 $(node, {"fill-opacity": attrs["fill-opacity"]});
525 … var gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
535 …clr[has]("opacity") && $(node, {"fill-opacity": clr.opacity > 1 ? clr.opacity / 100 : clr.opacity}…
538 node.setAttribute(att, clr.hex);
539 …att == "stroke" && clr[has]("opacity") && $(node, {"stroke-opacity": clr.opacity > 1 ? clr.opacity…
550 $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
555 … gradient = R._g.doc.getElementById(node.getAttribute("fill").replace(/^url\(#|\)$/g, E));
567 node.style[cssrule] = value;
569 node.setAttribute(att, value);
576 node.style.visibility = vis;
584 node = el.node,
585 …fontSize = node.firstChild ? toInt(R._g.doc.defaultView.getComputedStyle(node.firstChild, E).getPr…
589 while (node.firstChild) {
590 node.removeChild(node.firstChild);
599 node.appendChild(tspan);
603 tspans = node.getElementsByTagName("tspan");
610 $(node, {x: a.x, y: a.y});
616 getRealNode = function (node) { argument
617 if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") {
618 return node.parentNode;
620 return node;
623 Element = function (node, svg) { argument
640 this[0] = this.node = node;
653 node.raphael = true;
662 node.raphaelid = this.id;
871 this.node && $(this.node, {transform: this.matrix});
888 if(!this.removed) this.node.style.display = "none";
899 if(!this.removed) this.node.style.display = "";
909 var node = getRealNode(this.node);
910 if (this.removed || !node.parentNode) {
921 node.parentNode.removeChild(node);
932 if (this.node.style.display == "none") {
951 bbox = this.node.getBBox();
955 x: this.node.clientLeft,
956 y: this.node.clientTop,
957 width: this.node.clientWidth,
958 height: this.node.clientHeight
1121 var node = getRealNode(this.node);
1122 node.parentNode.appendChild(node);
1138 var node = getRealNode(this.node);
1139 var parentNode = node.parentNode;
1140 parentNode.insertBefore(node, parentNode.firstChild);
1157 var node = getRealNode(this.node);
1158 var afterNode = getRealNode(element.node || element[element.length - 1].node);
1160 afterNode.parentNode.insertBefore(node, afterNode.nextSibling);
1162 afterNode.parentNode.appendChild(node);
1179 var node = getRealNode(this.node);
1180 var beforeNode = getRealNode(element.node || element[0].node);
1181 beforeNode.parentNode.insertBefore(node, beforeNode);
1197 $(t.node, {filter: "url(#" + fltr.id + ")"});
1204 t.node.removeAttribute("filter");