Skip to content

Commit

Permalink
fix(core): rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcaufy committed Nov 1, 2018
1 parent cb62397 commit 97bb354
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/core/dist/wepy.js
Original file line number Diff line number Diff line change
Expand Up @@ -1708,12 +1708,15 @@ var Event = function Event (e) {
this.$wx = e;
this.type = e.type;
this.timeStamp = e.timeStamp;
this.x = detail.x;
this.y = detail.y;
if (detail) {
this.x = detail.x;
this.y = detail.y;
}

this.target = target;
this.currentTarget = currentTarget;
this.touches = e.touches;
this.changedTouches = e.changedTouches;
};

var proxyHandler = function (e) {
Expand Down

0 comments on commit 97bb354

Please sign in to comment.