Skip to content

Commit

Permalink
Minor version bump 4.3.0 > 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ten1seven committed Jul 12, 2017
1 parent e010bd7 commit 6353c99
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "what-input",
"version": "4.3.0",
"version": "4.3.1",
"homepage": "https://github.com/ten1seven/what-input",
"repository": {
"url": "https://github.com/ten1seven/what-input.git",
Expand Down
11 changes: 6 additions & 5 deletions dist/what-input.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* what-input - A global utility for tracking the current input method (mouse, keyboard or touch).
* @version v4.3.0
* @version v4.3.1
* @link https://github.com/ten1seven/what-input
* @license MIT
*/
Expand Down Expand Up @@ -58,7 +58,7 @@ return /******/ (function(modules) { // webpackBootstrap
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports) {
/***/ function(module, exports) {

'use strict';

Expand Down Expand Up @@ -161,6 +161,7 @@ return /******/ (function(modules) { // webpackBootstrap
// `pointermove`, `MSPointerMove`, `mousemove` and mouse wheel event binding
// can only demonstrate potential, but not actual, interaction
// and are treated separately
var options = supportsPassive ? { passive: true } : false;

// pointer events (mouse, pen, touch)
if (window.PointerEvent) {
Expand All @@ -176,13 +177,13 @@ return /******/ (function(modules) { // webpackBootstrap

// touch events
if ('ontouchstart' in window) {
doc.addEventListener('touchstart', touchBuffer);
doc.addEventListener('touchstart', touchBuffer, options);
doc.addEventListener('touchend', touchBuffer);
}
}

// mouse wheel
doc.addEventListener(detectWheel(), setIntent, supportsPassive ? { passive: true } : false);
doc.addEventListener(detectWheel(), setIntent, options);

// keyboard events
doc.addEventListener('keydown', updateInput);
Expand Down Expand Up @@ -373,7 +374,7 @@ return /******/ (function(modules) { // webpackBootstrap
};
}();

/***/ })
/***/ }
/******/ ])
});
;
4 changes: 2 additions & 2 deletions dist/what-input.min.js

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

11 changes: 6 additions & 5 deletions docs/scripts/what-input.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* what-input - A global utility for tracking the current input method (mouse, keyboard or touch).
* @version v4.3.0
* @version v4.3.1
* @link https://github.com/ten1seven/what-input
* @license MIT
*/
Expand Down Expand Up @@ -58,7 +58,7 @@ return /******/ (function(modules) { // webpackBootstrap
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports) {
/***/ function(module, exports) {

'use strict';

Expand Down Expand Up @@ -161,6 +161,7 @@ return /******/ (function(modules) { // webpackBootstrap
// `pointermove`, `MSPointerMove`, `mousemove` and mouse wheel event binding
// can only demonstrate potential, but not actual, interaction
// and are treated separately
var options = supportsPassive ? { passive: true } : false;

// pointer events (mouse, pen, touch)
if (window.PointerEvent) {
Expand All @@ -176,13 +177,13 @@ return /******/ (function(modules) { // webpackBootstrap

// touch events
if ('ontouchstart' in window) {
doc.addEventListener('touchstart', touchBuffer);
doc.addEventListener('touchstart', touchBuffer, options);
doc.addEventListener('touchend', touchBuffer);
}
}

// mouse wheel
doc.addEventListener(detectWheel(), setIntent, supportsPassive ? { passive: true } : false);
doc.addEventListener(detectWheel(), setIntent, options);

// keyboard events
doc.addEventListener('keydown', updateInput);
Expand Down Expand Up @@ -373,7 +374,7 @@ return /******/ (function(modules) { // webpackBootstrap
};
}();

/***/ })
/***/ }
/******/ ])
});
;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "what-input",
"version": "4.3.0",
"version": "4.3.1",
"description": "A global utility for tracking the current input method (mouse, keyboard or touch).",
"main": "dist/what-input.js",
"repository": {
Expand Down

0 comments on commit 6353c99

Please sign in to comment.