Authored by 毕凯

Merge branch 'hotfix/freeMail' into 'gray'

click



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