...
|
...
|
@@ -68,7 +68,7 @@ $pwd.bind('input', function() { |
|
|
|
|
|
|
|
|
// Login
|
|
|
$loginBtn.on('tap', function() {
|
|
|
$loginBtn.on('touchstart', function() {
|
|
|
var acc = trim($account.val()),
|
|
|
pwd = trim($pwd.val());
|
|
|
|
...
|
...
|
@@ -107,15 +107,15 @@ $loginBtn.on('tap', function() { |
|
|
});
|
|
|
|
|
|
|
|
|
$('#forget-pwd').on('tap', function() {
|
|
|
$('#forget-pwd').on('touchstart', function() {
|
|
|
showRetrivePanel();
|
|
|
});
|
|
|
|
|
|
$mask.on('tap', function() {
|
|
|
$mask.on('touchstart', function() {
|
|
|
hideRetrivePanel();
|
|
|
});
|
|
|
|
|
|
$('#cancel-retrive').on('tap', function(e) {
|
|
|
$('#cancel-retrive').on('touchstart', function(e) {
|
|
|
e.preventDefault();
|
|
|
hideRetrivePanel();
|
|
|
});
|
...
|
...
|
|