Skip to content

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
taye committed Dec 14, 2017
1 parent 5d0e4e5 commit 25c2300
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/docs/Interactable.html
Original file line number Diff line number Diff line change
Expand Up @@ -2513,7 +2513,7 @@ <h4 class="name" id="preventDefault"><span class="type-signature"></span>prevent

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="src_interactablePreventDefault.js.html">src/interactablePreventDefault.js</a>, <a href="src_interactablePreventDefault.js.html#line19">line 19</a>
<a href="src_interactablePreventDefault.js.html">src/interactablePreventDefault.js</a>, <a href="src_interactablePreventDefault.js.html#line20">line 20</a>
</li></ul></dd>


Expand Down
2 changes: 1 addition & 1 deletion dist/docs/doclets.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/docs/src_interactablePreventDefault.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ <h1 class="page-title">src/interactablePreventDefault.js</h1>
const scope = require('./scope');
const is = require('./utils/is');
const events = require('./utils/events');
const browser = require('./utils/browser');

const { nodeContains, matchesSelector } = require('./utils/domUtils');

Expand Down Expand Up @@ -87,7 +88,9 @@ <h1 class="page-title">src/interactablePreventDefault.js</h1>

// don't preventDefault of touch{start,move} events if the browser supports passive
// events listeners. CSS touch-action and user-selecct should be used instead
if (events.supportsOptions &amp;&amp; /^touch(start|move)$/.test(event.type)) {
if (events.supportsPassive
&amp;&amp; /^touch(start|move)$/.test(event.type)
&amp;&amp; !browser.isIOS) {
return;
}

Expand Down
9 changes: 6 additions & 3 deletions dist/interact.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/interact.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/interact.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/interact.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interactjs",
"version": "1.3.1",
"version": "1.3.2",
"repository": {
"type": "git",
"url": "https://github.com/taye/interact.js.git"
Expand Down

0 comments on commit 25c2300

Please sign in to comment.