Bump up version
parent
4bac7fa6a7
commit
5051bfe2df
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
// Snap.svg 0.3.0
|
||||
// Snap.svg 0.4.0
|
||||
//
|
||||
// Copyright (c) 2013 – 2014 Adobe Systems Incorporated. All rights reserved.
|
||||
// Copyright (c) 2013 – 2015 Adobe Systems Incorporated. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
|
@ -794,7 +794,7 @@ var mina = (function (eve) {
|
|||
window.mina = mina;
|
||||
return mina;
|
||||
})(typeof eve == "undefined" ? function () {} : eve);
|
||||
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
|
||||
// Copyright (c) 2013 - 2015 Adobe Systems Incorporated. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
|
@ -7271,6 +7271,7 @@ Snap.plugin(function (Snap, Element, Paper, glob) {
|
|||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -7315,47 +7316,43 @@ Snap.plugin(function (Snap, Element, Paper, glob) {
|
|||
stopTouch = function () {
|
||||
return this.originalEvent.stopPropagation();
|
||||
},
|
||||
addEvent = (function () {
|
||||
if (glob.doc.addEventListener) {
|
||||
return function (obj, type, fn, element) {
|
||||
var realName = supportsTouch && touchMap[type] ? touchMap[type] : type,
|
||||
f = function (e) {
|
||||
var scrollY = getScroll("y", element),
|
||||
scrollX = getScroll("x", element);
|
||||
if (supportsTouch && touchMap[has](type)) {
|
||||
for (var i = 0, ii = e.targetTouches && e.targetTouches.length; i < ii; i++) {
|
||||
if (e.targetTouches[i].target == obj || obj.contains(e.targetTouches[i].target)) {
|
||||
var olde = e;
|
||||
e = e.targetTouches[i];
|
||||
e.originalEvent = olde;
|
||||
e.preventDefault = preventTouch;
|
||||
e.stopPropagation = stopTouch;
|
||||
break;
|
||||
}
|
||||
}
|
||||
addEvent = function (obj, type, fn, element) {
|
||||
var realName = supportsTouch && touchMap[type] ? touchMap[type] : type,
|
||||
f = function (e) {
|
||||
var scrollY = getScroll("y", element),
|
||||
scrollX = getScroll("x", element);
|
||||
if (supportsTouch && touchMap[has](type)) {
|
||||
for (var i = 0, ii = e.targetTouches && e.targetTouches.length; i < ii; i++) {
|
||||
if (e.targetTouches[i].target == obj || obj.contains(e.targetTouches[i].target)) {
|
||||
var olde = e;
|
||||
e = e.targetTouches[i];
|
||||
e.originalEvent = olde;
|
||||
e.preventDefault = preventTouch;
|
||||
e.stopPropagation = stopTouch;
|
||||
break;
|
||||
}
|
||||
var x = e.clientX + scrollX,
|
||||
y = e.clientY + scrollY;
|
||||
return fn.call(element, e, x, y);
|
||||
};
|
||||
|
||||
if (type !== realName) {
|
||||
obj.addEventListener(type, f, false);
|
||||
}
|
||||
|
||||
obj.addEventListener(realName, f, false);
|
||||
|
||||
return function () {
|
||||
if (type !== realName) {
|
||||
obj.removeEventListener(type, f, false);
|
||||
}
|
||||
|
||||
obj.removeEventListener(realName, f, false);
|
||||
return true;
|
||||
};
|
||||
}
|
||||
var x = e.clientX + scrollX,
|
||||
y = e.clientY + scrollY;
|
||||
return fn.call(element, e, x, y);
|
||||
};
|
||||
|
||||
if (type !== realName) {
|
||||
obj.addEventListener(type, f, false);
|
||||
}
|
||||
})(),
|
||||
|
||||
obj.addEventListener(realName, f, false);
|
||||
|
||||
return function () {
|
||||
if (type !== realName) {
|
||||
obj.removeEventListener(type, f, false);
|
||||
}
|
||||
|
||||
obj.removeEventListener(realName, f, false);
|
||||
return true;
|
||||
};
|
||||
},
|
||||
drag = [],
|
||||
dragMove = function (e) {
|
||||
var x = e.clientX,
|
||||
|
|
|
@ -2087,15 +2087,15 @@ paper.path(Snap.format("M{x},{y}h{dim.width}v{dim.height}h{dim['negative width']
|
|||
|
||||
<p>Parses color string as RGB object
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="topcoat-list__container">
|
||||
<h3 class="topcoat-list__header">Parameters</h3>
|
||||
|
@ -2142,15 +2142,15 @@ paper.path(Snap.format("M{x},{y}h{dim.width}v{dim.height}h{dim['negative width']
|
|||
|
||||
<li>#••• — shortened HTML color: (<code>#000</code>, <code>#fc0</code>, etc.)</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>#•••••• — full length HTML color: (<code>#000000</code>, <code>#bd2300</code>)</li>
|
||||
|
||||
|
@ -2190,15 +2190,15 @@ paper.path(Snap.format("M{x},{y}h{dim.width}v{dim.height}h{dim['negative width']
|
|||
|
||||
<li>rgb(•••%, •••%, •••%) — same as above, but in %: (<code>rgb(100%, 175%, 0%)</code>)</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>rgba(•••%, •••%, •••%, •••%) — also with opacity</li>
|
||||
|
||||
|
@ -2238,15 +2238,15 @@ paper.path(Snap.format("M{x},{y}h{dim.width}v{dim.height}h{dim['negative width']
|
|||
|
||||
<li>hsb(•••%, •••%, •••%) — same as above, but in %</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li>hsba(•••%, •••%, •••%, •••%) — also with opacity</li>
|
||||
|
||||
|
@ -3309,8 +3309,6 @@ Parses given transform string into an array of transformations
|
|||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -3322,6 +3320,8 @@ Parses given transform string into an array of transformations
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
<p class="dr-returns">
|
||||
<strong class="dr-title">Returns:</strong>
|
||||
|
||||
|
@ -3596,14 +3596,14 @@ c.node.onclick = function () {
|
|||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -3622,7 +3622,6 @@ c.node.onclick = function () {
|
|||
<p>or
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -3635,6 +3634,7 @@ c.node.onclick = function () {
|
|||
|
||||
|
||||
|
||||
|
||||
<p class="dr-returns">
|
||||
<strong class="dr-title">Returns:</strong>
|
||||
|
||||
|
@ -5859,8 +5859,6 @@ To create a marker you have to specify the bounding rect and reference point:
|
|||
|
||||
<p>Returns a set of animations that may be able to manipulate the current element
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -5873,6 +5871,8 @@ To create a marker you have to specify the bounding rect and reference point:
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
<p class="dr-returns">
|
||||
<strong class="dr-title">Returns:</strong>
|
||||
|
||||
|
@ -6257,8 +6257,6 @@ with <code>data-</code> attributes)
|
|||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -6266,6 +6264,8 @@ with <code>data-</code> attributes)
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -10969,7 +10969,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.click">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.click(handler)<a href="#Element.click" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 147 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L147">➭</a></h3>
|
||||
<h3 class="dr-method">Element.click(handler)<a href="#Element.click" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 143 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L143">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.click-extra"></div>
|
||||
|
@ -11029,7 +11029,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unclick">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unclick(handler)<a href="#Element.unclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 155 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L155">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unclick(handler)<a href="#Element.unclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 151 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L151">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unclick-extra"></div>
|
||||
|
@ -11089,7 +11089,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.dblclick">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.dblclick(handler)<a href="#Element.dblclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 164 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L164">➭</a></h3>
|
||||
<h3 class="dr-method">Element.dblclick(handler)<a href="#Element.dblclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 160 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L160">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.dblclick-extra"></div>
|
||||
|
@ -11149,7 +11149,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.undblclick">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.undblclick(handler)<a href="#Element.undblclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 172 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L172">➭</a></h3>
|
||||
<h3 class="dr-method">Element.undblclick(handler)<a href="#Element.undblclick" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 168 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L168">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.undblclick-extra"></div>
|
||||
|
@ -11209,7 +11209,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.mousedown">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.mousedown(handler)<a href="#Element.mousedown" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 181 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L181">➭</a></h3>
|
||||
<h3 class="dr-method">Element.mousedown(handler)<a href="#Element.mousedown" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 177 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L177">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.mousedown-extra"></div>
|
||||
|
@ -11269,7 +11269,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unmousedown">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unmousedown(handler)<a href="#Element.unmousedown" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 189 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L189">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unmousedown(handler)<a href="#Element.unmousedown" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 185 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L185">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unmousedown-extra"></div>
|
||||
|
@ -11329,7 +11329,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.mousemove">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.mousemove(handler)<a href="#Element.mousemove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 198 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L198">➭</a></h3>
|
||||
<h3 class="dr-method">Element.mousemove(handler)<a href="#Element.mousemove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 194 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L194">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.mousemove-extra"></div>
|
||||
|
@ -11389,7 +11389,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unmousemove">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unmousemove(handler)<a href="#Element.unmousemove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 206 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L206">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unmousemove(handler)<a href="#Element.unmousemove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 202 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L202">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unmousemove-extra"></div>
|
||||
|
@ -11449,7 +11449,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.mouseout">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.mouseout(handler)<a href="#Element.mouseout" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 215 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L215">➭</a></h3>
|
||||
<h3 class="dr-method">Element.mouseout(handler)<a href="#Element.mouseout" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 211 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L211">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.mouseout-extra"></div>
|
||||
|
@ -11509,7 +11509,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unmouseout">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unmouseout(handler)<a href="#Element.unmouseout" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 223 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L223">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unmouseout(handler)<a href="#Element.unmouseout" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 219 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L219">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unmouseout-extra"></div>
|
||||
|
@ -11569,7 +11569,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.mouseover">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.mouseover(handler)<a href="#Element.mouseover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 232 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L232">➭</a></h3>
|
||||
<h3 class="dr-method">Element.mouseover(handler)<a href="#Element.mouseover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 228 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L228">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.mouseover-extra"></div>
|
||||
|
@ -11629,7 +11629,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unmouseover">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unmouseover(handler)<a href="#Element.unmouseover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 240 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L240">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unmouseover(handler)<a href="#Element.unmouseover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 236 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L236">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unmouseover-extra"></div>
|
||||
|
@ -11689,7 +11689,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.mouseup">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.mouseup(handler)<a href="#Element.mouseup" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 249 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L249">➭</a></h3>
|
||||
<h3 class="dr-method">Element.mouseup(handler)<a href="#Element.mouseup" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 245 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L245">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.mouseup-extra"></div>
|
||||
|
@ -11749,7 +11749,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unmouseup">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unmouseup(handler)<a href="#Element.unmouseup" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 257 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L257">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unmouseup(handler)<a href="#Element.unmouseup" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 253 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L253">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unmouseup-extra"></div>
|
||||
|
@ -11809,7 +11809,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.touchstart">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.touchstart(handler)<a href="#Element.touchstart" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 266 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L266">➭</a></h3>
|
||||
<h3 class="dr-method">Element.touchstart(handler)<a href="#Element.touchstart" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 262 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L262">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.touchstart-extra"></div>
|
||||
|
@ -11869,7 +11869,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.untouchstart">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.untouchstart(handler)<a href="#Element.untouchstart" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 274 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L274">➭</a></h3>
|
||||
<h3 class="dr-method">Element.untouchstart(handler)<a href="#Element.untouchstart" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 270 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L270">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.untouchstart-extra"></div>
|
||||
|
@ -11929,7 +11929,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.touchmove">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.touchmove(handler)<a href="#Element.touchmove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 283 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L283">➭</a></h3>
|
||||
<h3 class="dr-method">Element.touchmove(handler)<a href="#Element.touchmove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 279 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L279">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.touchmove-extra"></div>
|
||||
|
@ -11989,7 +11989,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.untouchmove">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.untouchmove(handler)<a href="#Element.untouchmove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 291 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L291">➭</a></h3>
|
||||
<h3 class="dr-method">Element.untouchmove(handler)<a href="#Element.untouchmove" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 287 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L287">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.untouchmove-extra"></div>
|
||||
|
@ -12049,7 +12049,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.touchend">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.touchend(handler)<a href="#Element.touchend" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 300 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L300">➭</a></h3>
|
||||
<h3 class="dr-method">Element.touchend(handler)<a href="#Element.touchend" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 296 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L296">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.touchend-extra"></div>
|
||||
|
@ -12109,7 +12109,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.untouchend">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.untouchend(handler)<a href="#Element.untouchend" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 308 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L308">➭</a></h3>
|
||||
<h3 class="dr-method">Element.untouchend(handler)<a href="#Element.untouchend" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 304 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L304">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.untouchend-extra"></div>
|
||||
|
@ -12169,7 +12169,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.touchcancel">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.touchcancel(handler)<a href="#Element.touchcancel" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 317 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L317">➭</a></h3>
|
||||
<h3 class="dr-method">Element.touchcancel(handler)<a href="#Element.touchcancel" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 313 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L313">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.touchcancel-extra"></div>
|
||||
|
@ -12229,7 +12229,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.untouchcancel">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.untouchcancel(handler)<a href="#Element.untouchcancel" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 325 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L325">➭</a></h3>
|
||||
<h3 class="dr-method">Element.untouchcancel(handler)<a href="#Element.untouchcancel" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 321 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L321">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.untouchcancel-extra"></div>
|
||||
|
@ -12289,7 +12289,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.hover">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.hover(f_in, f_out, [icontext], [ocontext])<a href="#Element.hover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 370 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L370">➭</a></h3>
|
||||
<h3 class="dr-method">Element.hover(f_in, f_out, [icontext], [ocontext])<a href="#Element.hover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 366 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L366">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.hover-extra"></div>
|
||||
|
@ -12358,7 +12358,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.unhover">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.unhover(f_in, f_out)<a href="#Element.unhover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 382 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L382">➭</a></h3>
|
||||
<h3 class="dr-method">Element.unhover(f_in, f_out)<a href="#Element.unhover" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 378 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L378">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.unhover-extra"></div>
|
||||
|
@ -12421,7 +12421,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.drag">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.drag(onmove, onstart, onend, [mcontext], [scontext], [econtext])<a href="#Element.drag" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 420 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L420">➭</a></h3>
|
||||
<h3 class="dr-method">Element.drag(onmove, onstart, onend, [mcontext], [scontext], [econtext])<a href="#Element.drag" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 416 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L416">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.drag-extra"></div>
|
||||
|
@ -12640,7 +12640,7 @@ the class’s presence or the value of the <code>flag</code> argument.
|
|||
|
||||
<article id="Element.undrag">
|
||||
<header>
|
||||
<h3 class="dr-method">Element.undrag()<a href="#Element.undrag" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 469 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L469">➭</a></h3>
|
||||
<h3 class="dr-method">Element.undrag()<a href="#Element.undrag" title="Link to this section" class="dr-hash">⚓</a><a class="dr-sourceline" title="Go to line 465 in the source" href="https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js#L465">➭</a></h3>
|
||||
</header>
|
||||
<section>
|
||||
<div class="extra" id="Element.undrag-extra"></div>
|
||||
|
|
13
history.md
13
history.md
|
@ -1,3 +1,16 @@
|
|||
#0.4.0
|
||||
|
||||
* Moved class and element related code into separate plugins
|
||||
* Added `Element.align()` and `Element.getAlign()` methods
|
||||
* Added animation support for `viewBox`
|
||||
* Added support for `<symbol>`
|
||||
* Added method `Paper.toDataURL()`
|
||||
* Added method `Snap.closest()`
|
||||
* Added methods to work with degrees instead of radians: `Snap.sin()`, `Snap.cos()`, `Snap.tan()`, `Snap.asin()`, `Snap.acos()`, `Snap.atan()` and `Snap.atan2()`
|
||||
* Added methods `Snap.len()`, `Snap.len2()` and `Snap.closestPoint()`
|
||||
* Added methods `Element.children()` and `Element.toJSON()`
|
||||
* Various bug fixes
|
||||
|
||||
#0.3.0
|
||||
|
||||
* Added `.addClass()`, `.removeClass()`, `.toggleClass()` and `.hasClass()` APIs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "snapsvg",
|
||||
"version": "0.3.0",
|
||||
"version": "0.4.0",
|
||||
"description": "JavaScript Vector Library",
|
||||
"main": "./dist/snap.svg.js",
|
||||
"repository": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Snap.svg @VERSION
|
||||
//
|
||||
// Copyright (c) 2013 – 2014 Adobe Systems Incorporated. All rights reserved.
|
||||
// Copyright (c) 2013 – 2015 Adobe Systems Incorporated. All rights reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
|
|
Loading…
Reference in New Issue