parent
d7e1f819bb
commit
d1f8db5f6e
File diff suppressed because one or more lines are too long
|
@ -2206,6 +2206,13 @@ function arrayFirstValue(arr) {
|
||||||
\*/
|
\*/
|
||||||
elproto.prepend = function (el) {
|
elproto.prepend = function (el) {
|
||||||
if (el) {
|
if (el) {
|
||||||
|
if (el.type == "set") {
|
||||||
|
var it = this;
|
||||||
|
el.forEach(function (el) {
|
||||||
|
it.prepend(el);
|
||||||
|
});
|
||||||
|
return this;
|
||||||
|
}
|
||||||
el = wrap(el);
|
el = wrap(el);
|
||||||
var parent = el.parent();
|
var parent = el.parent();
|
||||||
this.node.insertBefore(el.node, this.node.firstChild);
|
this.node.insertBefore(el.node, this.node.firstChild);
|
||||||
|
@ -4063,7 +4070,11 @@ Snap.plugin(function (Snap, Element, Paper, glob, Fragment) {
|
||||||
eve.on("snap.util.getattr.points", function () {
|
eve.on("snap.util.getattr.points", function () {
|
||||||
var p = $(this.node, "points");
|
var p = $(this.node, "points");
|
||||||
eve.stop();
|
eve.stop();
|
||||||
|
if (p) {
|
||||||
return p.split(separator);
|
return p.split(separator);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
eve.on("snap.util.getattr.path", function () {
|
eve.on("snap.util.getattr.path", function () {
|
||||||
var p = $(this.node, "d");
|
var p = $(this.node, "d");
|
||||||
|
|
|
@ -3506,7 +3506,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.prependTo">
|
<article id="Element.prependTo">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.prependTo(el)<a href="#Element.prependTo" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1470 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1470">➭</a></h3>
|
<h3 class="dr-method">Element.prependTo(el)<a href="#Element.prependTo" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1477 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1477">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.prependTo-extra"></div>
|
<div class="extra" id="Element.prependTo-extra"></div>
|
||||||
|
@ -3566,7 +3566,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.before">
|
<article id="Element.before">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.before(el)<a href="#Element.before" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1484 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1484">➭</a></h3>
|
<h3 class="dr-method">Element.before(el)<a href="#Element.before" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1491 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1491">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.before-extra"></div>
|
<div class="extra" id="Element.before-extra"></div>
|
||||||
|
@ -3626,7 +3626,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.after">
|
<article id="Element.after">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.after(el)<a href="#Element.after" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1512 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1512">➭</a></h3>
|
<h3 class="dr-method">Element.after(el)<a href="#Element.after" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1519 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1519">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.after-extra"></div>
|
<div class="extra" id="Element.after-extra"></div>
|
||||||
|
@ -3686,7 +3686,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.insertBefore">
|
<article id="Element.insertBefore">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.insertBefore(el)<a href="#Element.insertBefore" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1534 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1534">➭</a></h3>
|
<h3 class="dr-method">Element.insertBefore(el)<a href="#Element.insertBefore" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1541 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1541">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.insertBefore-extra"></div>
|
<div class="extra" id="Element.insertBefore-extra"></div>
|
||||||
|
@ -3746,7 +3746,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.insertAfter">
|
<article id="Element.insertAfter">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.insertAfter(el)<a href="#Element.insertAfter" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1552 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1552">➭</a></h3>
|
<h3 class="dr-method">Element.insertAfter(el)<a href="#Element.insertAfter" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1559 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1559">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.insertAfter-extra"></div>
|
<div class="extra" id="Element.insertAfter-extra"></div>
|
||||||
|
@ -3806,7 +3806,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.remove">
|
<article id="Element.remove">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.remove()<a href="#Element.remove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1568 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1568">➭</a></h3>
|
<h3 class="dr-method">Element.remove()<a href="#Element.remove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1575 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1575">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.remove-extra"></div>
|
<div class="extra" id="Element.remove-extra"></div>
|
||||||
|
@ -3848,7 +3848,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.select">
|
<article id="Element.select">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.select(query)<a href="#Element.select" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1585 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1585">➭</a></h3>
|
<h3 class="dr-method">Element.select(query)<a href="#Element.select" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1592 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1592">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.select-extra"></div>
|
<div class="extra" id="Element.select-extra"></div>
|
||||||
|
@ -3908,7 +3908,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.selectAll">
|
<article id="Element.selectAll">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.selectAll(query)<a href="#Element.selectAll" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1597 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1597">➭</a></h3>
|
<h3 class="dr-method">Element.selectAll(query)<a href="#Element.selectAll" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1604 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1604">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.selectAll-extra"></div>
|
<div class="extra" id="Element.selectAll-extra"></div>
|
||||||
|
@ -3970,7 +3970,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.asPX">
|
<article id="Element.asPX">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.asPX(attr, [value])<a href="#Element.asPX" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1615 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1615">➭</a></h3>
|
<h3 class="dr-method">Element.asPX(attr, [value])<a href="#Element.asPX" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1622 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1622">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.asPX-extra"></div>
|
<div class="extra" id="Element.asPX-extra"></div>
|
||||||
|
@ -4033,7 +4033,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.use">
|
<article id="Element.use">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.use()<a href="#Element.use" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1630 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1630">➭</a></h3>
|
<h3 class="dr-method">Element.use()<a href="#Element.use" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1637 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1637">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.use-extra"></div>
|
<div class="extra" id="Element.use-extra"></div>
|
||||||
|
@ -4075,7 +4075,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.clone">
|
<article id="Element.clone">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.clone()<a href="#Element.clone" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1659 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1659">➭</a></h3>
|
<h3 class="dr-method">Element.clone()<a href="#Element.clone" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1666 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1666">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.clone-extra"></div>
|
<div class="extra" id="Element.clone-extra"></div>
|
||||||
|
@ -4117,7 +4117,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.toDefs">
|
<article id="Element.toDefs">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.toDefs()<a href="#Element.toDefs" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1830 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1830">➭</a></h3>
|
<h3 class="dr-method">Element.toDefs()<a href="#Element.toDefs" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1837 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1837">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.toDefs-extra"></div>
|
<div class="extra" id="Element.toDefs-extra"></div>
|
||||||
|
@ -4159,7 +4159,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.pattern">
|
<article id="Element.pattern">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.pattern()<a href="#Element.pattern" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1841 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1841">➭</a></h3>
|
<h3 class="dr-method">Element.pattern()<a href="#Element.pattern" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1848 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1848">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.pattern-extra"></div>
|
<div class="extra" id="Element.pattern-extra"></div>
|
||||||
|
@ -4184,7 +4184,7 @@ and <code>-</code>: <code>"+=2em"</code>.
|
||||||
|
|
||||||
<article id="Element.toPattern">
|
<article id="Element.toPattern">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.toPattern(x, y, width, height)<a href="#Element.toPattern" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1864 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1864">➭</a></h3>
|
<h3 class="dr-method">Element.toPattern(x, y, width, height)<a href="#Element.toPattern" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1871 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1871">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.toPattern-extra"></div>
|
<div class="extra" id="Element.toPattern-extra"></div>
|
||||||
|
@ -4284,7 +4284,7 @@ c.attr({
|
||||||
|
|
||||||
<article id="Element.marker">
|
<article id="Element.marker">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.marker(x, y, width, height, refX, refY)<a href="#Element.marker" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1905 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1905">➭</a></h3>
|
<h3 class="dr-method">Element.marker(x, y, width, height, refX, refY)<a href="#Element.marker" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1912 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1912">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.marker-extra"></div>
|
<div class="extra" id="Element.marker-extra"></div>
|
||||||
|
@ -4371,7 +4371,7 @@ To create a marker you have to specify the bounding rect and reference point:
|
||||||
|
|
||||||
<article id="Snap.animation">
|
<article id="Snap.animation">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.animation(attr, duration, [easing], [callback])<a href="#Snap.animation" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1964 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1964">➭</a></h3>
|
<h3 class="dr-method">Snap.animation(attr, duration, [easing], [callback])<a href="#Snap.animation" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1971 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1971">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.animation-extra"></div>
|
<div class="extra" id="Snap.animation-extra"></div>
|
||||||
|
@ -4440,7 +4440,7 @@ To create a marker you have to specify the bounding rect and reference point:
|
||||||
|
|
||||||
<article id="Element.inAnim">
|
<article id="Element.inAnim">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.inAnim()<a href="#Element.inAnim" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1982 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1982">➭</a></h3>
|
<h3 class="dr-method">Element.inAnim()<a href="#Element.inAnim" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 1989 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L1989">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.inAnim-extra"></div>
|
<div class="extra" id="Element.inAnim-extra"></div>
|
||||||
|
@ -4542,7 +4542,7 @@ To create a marker you have to specify the bounding rect and reference point:
|
||||||
|
|
||||||
<article id="Snap.animate">
|
<article id="Snap.animate">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.animate(from, to, setter, duration, [easing], [callback])<a href="#Snap.animate" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2032 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2032">➭</a></h3>
|
<h3 class="dr-method">Snap.animate(from, to, setter, duration, [easing], [callback])<a href="#Snap.animate" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2039 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2039">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.animate-extra"></div>
|
<div class="extra" id="Snap.animate-extra"></div>
|
||||||
|
@ -4703,7 +4703,7 @@ rect.animate({x: 10}, 1000);</code></pre></section>
|
||||||
|
|
||||||
<article id="Element.stop">
|
<article id="Element.stop">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.stop()<a href="#Element.stop" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2050 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2050">➭</a></h3>
|
<h3 class="dr-method">Element.stop()<a href="#Element.stop" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2057 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2057">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.stop-extra"></div>
|
<div class="extra" id="Element.stop-extra"></div>
|
||||||
|
@ -4745,7 +4745,7 @@ rect.animate({x: 10}, 1000);</code></pre></section>
|
||||||
|
|
||||||
<article id="Element.animate">
|
<article id="Element.animate">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.animate(attrs, duration, [easing], [callback])<a href="#Element.animate" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2069 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2069">➭</a></h3>
|
<h3 class="dr-method">Element.animate(attrs, duration, [easing], [callback])<a href="#Element.animate" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2076 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2076">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.animate-extra"></div>
|
<div class="extra" id="Element.animate-extra"></div>
|
||||||
|
@ -4814,7 +4814,7 @@ rect.animate({x: 10}, 1000);</code></pre></section>
|
||||||
|
|
||||||
<article id="Element.data">
|
<article id="Element.data">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.data(key, [value])<a href="#Element.data" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2142 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2142">➭</a></h3>
|
<h3 class="dr-method">Element.data(key, [value])<a href="#Element.data" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2149 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2149">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.data-extra"></div>
|
<div class="extra" id="Element.data-extra"></div>
|
||||||
|
@ -4936,7 +4936,7 @@ with <code>data-</code> attributes)
|
||||||
|
|
||||||
<article id="Element.removeData">
|
<article id="Element.removeData">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.removeData([key])<a href="#Element.removeData" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2171 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2171">➭</a></h3>
|
<h3 class="dr-method">Element.removeData([key])<a href="#Element.removeData" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2178 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2178">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.removeData-extra"></div>
|
<div class="extra" id="Element.removeData-extra"></div>
|
||||||
|
@ -4997,7 +4997,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Element.outerSVG">
|
<article id="Element.outerSVG">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.outerSVG()<a href="#Element.outerSVG" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2188 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2188">➭</a></h3>
|
<h3 class="dr-method">Element.outerSVG()<a href="#Element.outerSVG" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2195 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2195">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.outerSVG-extra"></div>
|
<div class="extra" id="Element.outerSVG-extra"></div>
|
||||||
|
@ -5040,7 +5040,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Element.toString">
|
<article id="Element.toString">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.toString()<a href="#Element.toString" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2194 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2194">➭</a></h3>
|
<h3 class="dr-method">Element.toString()<a href="#Element.toString" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2201 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2201">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.toString-extra"></div>
|
<div class="extra" id="Element.toString-extra"></div>
|
||||||
|
@ -5065,7 +5065,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Element.innerSVG">
|
<article id="Element.innerSVG">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Element.innerSVG()<a href="#Element.innerSVG" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2202 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2202">➭</a></h3>
|
<h3 class="dr-method">Element.innerSVG()<a href="#Element.innerSVG" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2209 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2209">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Element.innerSVG-extra"></div>
|
<div class="extra" id="Element.innerSVG-extra"></div>
|
||||||
|
@ -5107,7 +5107,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Snap.parse">
|
<article id="Snap.parse">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.parse(svg)<a href="#Snap.parse" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2240 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2240">➭</a></h3>
|
<h3 class="dr-method">Snap.parse(svg)<a href="#Snap.parse" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2247 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2247">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.parse-extra"></div>
|
<div class="extra" id="Snap.parse-extra"></div>
|
||||||
|
@ -5167,7 +5167,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Fragment.select">
|
<article id="Fragment.select">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Fragment.select()<a href="#Fragment.select" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2272 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2272">➭</a></h3>
|
<h3 class="dr-method">Fragment.select()<a href="#Fragment.select" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2279 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2279">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Fragment.select-extra"></div>
|
<div class="extra" id="Fragment.select-extra"></div>
|
||||||
|
@ -5192,7 +5192,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Fragment.selectAll">
|
<article id="Fragment.selectAll">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Fragment.selectAll()<a href="#Fragment.selectAll" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2279 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2279">➭</a></h3>
|
<h3 class="dr-method">Fragment.selectAll()<a href="#Fragment.selectAll" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2286 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2286">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Fragment.selectAll-extra"></div>
|
<div class="extra" id="Fragment.selectAll-extra"></div>
|
||||||
|
@ -5217,7 +5217,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Snap.fragment">
|
<article id="Snap.fragment">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.fragment(varargs)<a href="#Snap.fragment" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2290 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2290">➭</a></h3>
|
<h3 class="dr-method">Snap.fragment(varargs)<a href="#Snap.fragment" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2297 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2297">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.fragment-extra"></div>
|
<div class="extra" id="Snap.fragment-extra"></div>
|
||||||
|
@ -5277,7 +5277,7 @@ If key is not provided, removes all the data of the element.
|
||||||
|
|
||||||
<article id="Paper.el">
|
<article id="Paper.el">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Paper.el(name, attr)<a href="#Paper.el" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2393 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2393">➭</a></h3>
|
<h3 class="dr-method">Paper.el(name, attr)<a href="#Paper.el" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2400 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2400">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Paper.el-extra"></div>
|
<div class="extra" id="Paper.el-extra"></div>
|
||||||
|
@ -5373,7 +5373,7 @@ var c = paper.el("circle", {
|
||||||
|
|
||||||
<article id="Snap.ajax">
|
<article id="Snap.ajax">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.ajax(…)<a href="#Snap.ajax" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2511 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2511">➭</a></h3>
|
<h3 class="dr-method">Snap.ajax(…)<a href="#Snap.ajax" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2518 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2518">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.ajax-extra"></div>
|
<div class="extra" id="Snap.ajax-extra"></div>
|
||||||
|
@ -5477,7 +5477,7 @@ var c = paper.el("circle", {
|
||||||
|
|
||||||
<article id="Snap.load">
|
<article id="Snap.load">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.load(url, callback, [scope])<a href="#Snap.load" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2557 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2557">➭</a></h3>
|
<h3 class="dr-method">Snap.load(url, callback, [scope])<a href="#Snap.load" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2564 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2564">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.load-extra"></div>
|
<div class="extra" id="Snap.load-extra"></div>
|
||||||
|
@ -5526,7 +5526,7 @@ var c = paper.el("circle", {
|
||||||
|
|
||||||
<article id="Snap.getElementByPoint">
|
<article id="Snap.getElementByPoint">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.getElementByPoint(x, y)<a href="#Snap.getElementByPoint" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2588 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2588">➭</a></h3>
|
<h3 class="dr-method">Snap.getElementByPoint(x, y)<a href="#Snap.getElementByPoint" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2595 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2595">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.getElementByPoint-extra"></div>
|
<div class="extra" id="Snap.getElementByPoint-extra"></div>
|
||||||
|
@ -5611,7 +5611,7 @@ var c = paper.el("circle", {
|
||||||
|
|
||||||
<article id="Snap.plugin">
|
<article id="Snap.plugin">
|
||||||
<header>
|
<header>
|
||||||
<h3 class="dr-method">Snap.plugin(f)<a href="#Snap.plugin" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2623 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2623">➭</a></h3>
|
<h3 class="dr-method">Snap.plugin(f)<a href="#Snap.plugin" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 2630 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L2630">➭</a></h3>
|
||||||
</header>
|
</header>
|
||||||
<section>
|
<section>
|
||||||
<div class="extra" id="Snap.plugin-extra"></div>
|
<div class="extra" id="Snap.plugin-extra"></div>
|
||||||
|
|
|
@ -377,7 +377,11 @@ Snap.plugin(function (Snap, Element, Paper, glob, Fragment) {
|
||||||
eve.on("snap.util.getattr.points", function () {
|
eve.on("snap.util.getattr.points", function () {
|
||||||
var p = $(this.node, "points");
|
var p = $(this.node, "points");
|
||||||
eve.stop();
|
eve.stop();
|
||||||
|
if (p) {
|
||||||
return p.split(separator);
|
return p.split(separator);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
eve.on("snap.util.getattr.path", function () {
|
eve.on("snap.util.getattr.path", function () {
|
||||||
var p = $(this.node, "d");
|
var p = $(this.node, "d");
|
||||||
|
|
Loading…
Reference in New Issue