Skip to content

Commit

Permalink
release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed May 29, 2015
1 parent 6deed34 commit 282a92f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polymer",
"version": "1.0.0",
"version": "1.0.1",
"main": [
"polymer.html"
],
Expand Down
10 changes: 5 additions & 5 deletions build.log
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
BUILD LOG
---------
Build Time: 2015-05-27T14:54:42-0700
Build Time: 2015-05-28T19:33:21-0700

NODEJS INFORMATION
==================
nodejs: v2.0.2
del: 1.2.0
gulp: 3.8.11
gulp-audit: 1.0.0
del: 1.2.0
gulp-rename: 1.2.2
gulp-replace: 0.5.3
gulp-vulcanize: 6.0.0
Expand All @@ -17,10 +17,10 @@ run-sequence: 1.1.0

REPO REVISIONS
==============
polymer: eccaf25115c32e27da9bf4581879ed882fb06d05
polymer: eb1c9d10a4e1a051c892f87333a5f4a0138c1b13

BUILD HASHES
============
polymer-mini.html: 6643b7ca3675fd7247fb1894a51435e0e1256e32
polymer-micro.html: 555887281397132abc31e55b665d0011427750b4
polymer.html: c6f614355fa488c8ef3010b41c8c9e24b43718a8
polymer-micro.html: 043fe25c24650820cefc1e031e24c8a3d5d00186
polymer.html: f61751072f1dee68c07a7ed145c52d245563f0e6
2 changes: 1 addition & 1 deletion polymer-micro.html
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
}
});

Polymer.version = "1.0.0";
Polymer.version = "1.0.1";

Polymer.Base._addFeature({
_registerFeatures: function() {
Expand Down
11 changes: 6 additions & 5 deletions polymer.html
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,7 @@
dy: dy,
ddx: ddx,
ddy: ddy,
sourceEvent: touch,
hover: function() {
return Gestures.deepTargetFind(touch.clientX, touch.clientY);
}
Expand All @@ -708,12 +709,12 @@
deps: [ "mousedown", "click", "touchstart", "touchend" ],
emits: [ "tap" ],
start: {
x: 0,
y: 0
x: NaN,
y: NaN
},
reset: function() {
this.start.x = 0;
this.start.y = 0;
this.start.x = NaN;
this.start.y = NaN;
},
save: function(e) {
this.start.x = e.clientX;
Expand All @@ -736,7 +737,7 @@
forward: function(e) {
var dx = Math.abs(e.clientX - this.start.x);
var dy = Math.abs(e.clientY - this.start.y);
if (isNaN(dx) || isNaN(dy) || dx <= TAP_DISTANCE || dy <= TAP_DISTANCE) {
if (isNaN(dx) || isNaN(dy) || dx <= TAP_DISTANCE && dy <= TAP_DISTANCE) {
if (!POINTERSTATE.tapPrevented) {
Gestures.fire(e.target, "tap", {
x: e.clientX,
Expand Down

0 comments on commit 282a92f

Please sign in to comment.