Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ngryman committed Jun 27, 2016
1 parent ba4e6aa commit aa93e3c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# jQuery Finger [![Version](http://img.shields.io/badge/version-0.1.2-brightgreen.svg)](https://github.com/ngryman/jquery.finger#release-history)
# jQuery Finger [![Version](http://img.shields.io/badge/version-0.1.5-brightgreen.svg)](https://github.com/ngryman/jquery.finger#release-history)

[![Build Status](http://img.shields.io/travis/ngryman/jquery.finger.svg)](https://travis-ci.org/ngryman/jquery.finger)
[![Dependency Status](http://img.shields.io/gemnasium/ngryman/jquery.finger.svg)](https://gemnasium.com/ngryman/jquery.finger)
Expand All @@ -13,7 +13,7 @@ Very small (< 0.5kb gzipped), it is focused on **performance** and **KISS**, is

## Getting Started

Download the [production version][min] *(1K gzipped)* or the [development version][max] *(4K)*.<br>
Download the [production version][min] or the [development version][max].<br>
You can also install it via [Jam] or [Bower].

[min]: https://raw.github.com/ngryman/jquery.finger/master/dist/jquery.finger.min.js
Expand Down Expand Up @@ -214,6 +214,9 @@ $('#menu').on('flick', function(e) {
## Release History

```
v0.1.5
- ignore non-left mouse clicks (#48).
v0.1.4
- up to date jQuery dependency for Bower (#45).
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.finger",
"version": "0.1.4",
"version": "0.1.5",
"main": "dist/jquery.finger.js",
"ignore": [
".gitignore",
Expand Down
7 changes: 5 additions & 2 deletions dist/jquery.finger.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! jquery.finger - v0.1.4 - 2015-12-02
/*! jquery.finger - v0.1.5 - 2016-06-27
* https://github.com/ngryman/jquery.finger
* Copyright (c) 2015 Nicolas Gryman; Licensed MIT */
* Copyright (c) 2016 Nicolas Gryman; Licensed MIT */

(function (factory) {
if (typeof define === 'function' && define.amd)
Expand Down Expand Up @@ -65,6 +65,9 @@
}

function startHandler(event) {
if (event.which > 1)
return;

var timeStamp = event.timeStamp || +new Date();

if (safeguard == timeStamp) return;
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.finger.min.js

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

2 changes: 1 addition & 1 deletion finger.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "finger",
"title": "jQuery Finger",
"version": "0.1.4",
"version": "0.1.5",
"description": "jQuery Finger unifies click and touch events by removing the 300ms delay on touch devices. It also provide a common set of events to handle basic gestures such as drag and pinch. Small (< 1kb gzipped), it is focused on performance, is well tested and ... also supports jQuery delegated events.",
"homepage": "https://github.com/ngryman/jquery.finger",
"bugs": "https://github.com/ngryman/jquery.finger/issues",
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": "jquery.finger",
"version": "0.1.4",
"version": "0.1.5",
"description": "jQuery Finger unifies click and touch events by removing the 300ms delay on touch devices. It also provide a common set of events to handle basic gestures such as drag and pinch. Small (< 1kb gzipped), it is focused on performance, is well tested and ... also supports jQuery delegated events.",
"homepage": "https://github.com/ngryman/jquery.finger",
"keywords": [
Expand Down

0 comments on commit aa93e3c

Please sign in to comment.