Skip to content

Commit

Permalink
Build dist v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pazguille committed May 19, 2014
1 parent 75304f6 commit 63f45b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions dist/gesturekit.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* gesturekit.js v1.1.0
* gesturekit.js v1.1.1
* http://gesturekit.com/
*
* Copyright (c) 2014, RoamTouch
Expand Down Expand Up @@ -72,8 +72,9 @@ Analytics.prototype.sendGestures = function () {

for (key in this.collection) {
gestures.push({
"count": this.collection[key].length,
"gesture_id": key
'gesture_id': key,
'score': this.collection[key][0].score,
'count': this.collection[key].length
});
}

Expand Down Expand Up @@ -726,7 +727,7 @@ gesturekit = new Gesturekit();
/**
* gesturekit version.
*/
gesturekit.version = '1.1.0';
gesturekit.version = '1.1.1';

// Expose gesturekit
module.exports = gesturekit;
Expand Down
2 changes: 1 addition & 1 deletion dist/gesturekit.min.js

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

0 comments on commit 63f45b4

Please sign in to comment.