Skip to content

Commit

Permalink
v0.10.2, fixes wrong touch event type
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Nov 12, 2017
1 parent 2c735da commit d58ba0e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "selectable.js",
"version": "0.10.1",
"version": "0.10.2",
"ignore": [
".gitattributes",
"README.md"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "selectable.js",
"version": "0.10.1",
"version": "0.10.2",
"description": "UI Selectable plugin without the bloat of jQuery and jQuery UI.",
"main": "selectable.min.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions selectable.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version: 0.10.1
* Version: 0.10.2
*
*/
(function(root, factory) {
Expand All @@ -21,7 +21,7 @@
})(typeof global !== 'undefined' ? global : this.window || this.global, function() {
"use strict";

var _version = "0.10.1";
var _version = "0.10.2";

/**
* Check for touch screen
Expand Down Expand Up @@ -612,7 +612,7 @@
var that = this,
c,
tmp,
t = e.type === "touchstart";
t = e.type === "touchmove";

this.offset = c = {
x1: this.origin.x,
Expand Down
Loading

0 comments on commit d58ba0e

Please sign in to comment.