Authored by 毕凯

Merge branch 'hotfix/freeMail' into 'gray'

click



See merge request !831
@@ -9,8 +9,8 @@ class IndexView extends View { @@ -9,8 +9,8 @@ class IndexView extends View {
9 this.receiveBtn = $('.receive-btn'); 9 this.receiveBtn = $('.receive-btn');
10 this.tipClose = $('.close'); 10 this.tipClose = $('.close');
11 11
12 - this.on('touchend touchcancel', '.receive-btn', this.btnClick.bind(this));  
13 - this.on('touchend touchcancel', '.close', this.tipClickHide.bind(this)); 12 + this.on('click', '.receive-btn', this.btnClick.bind(this));
  13 + this.on('click', '.close', this.tipClickHide.bind(this));
14 } 14 }
15 15
16 /** 16 /**
@@ -8,7 +8,7 @@ class ListView extends View { @@ -8,7 +8,7 @@ class ListView extends View {
8 8
9 this.receiveBtn = $('.receive-btn'); 9 this.receiveBtn = $('.receive-btn');
10 10
11 - this.on('touchend touchcancel', '.receive-btn', this.receiveClick.bind(this)); 11 + this.on('click', '.receive-btn', this.receiveClick.bind(this));
12 } 12 }
13 13
14 /** 14 /**