Authored by htoooth

fix bug

@@ -355,7 +355,6 @@ function hideAccountTip1() { @@ -355,7 +355,6 @@ function hideAccountTip1() {
355 } 355 }
356 356
357 function showAccountTip2(msg) { 357 function showAccountTip2(msg) {
358 - refreshSmsCaptchaEvent.fire();  
359 return errTipShow($accountTip2, $accountInput2, msg); 358 return errTipShow($accountTip2, $accountInput2, msg);
360 } 359 }
361 360
@@ -377,7 +376,6 @@ function hidePasswordTip() { @@ -377,7 +376,6 @@ function hidePasswordTip() {
377 /** ************************************************************************/ 376 /** ************************************************************************/
378 377
379 function showCaptchaSmsTip(msg) { 378 function showCaptchaSmsTip(msg) {
380 - refreshSmsCaptchaEvent.fire();  
381 return errTipShow($captchaSmsTip, $captchaSmsInput, msg); 379 return errTipShow($captchaSmsTip, $captchaSmsInput, msg);
382 } 380 }
383 381
@@ -388,7 +386,6 @@ function hideCaptchaSmsTip() { @@ -388,7 +386,6 @@ function hideCaptchaSmsTip() {
388 /** ************************************************************************/ 386 /** ************************************************************************/
389 387
390 function showSmsCaptchaImgTip() { 388 function showSmsCaptchaImgTip() {
391 - refreshSmsCaptchaEvent.fire();  
392 smsCaptchaImg.showTip(); 389 smsCaptchaImg.showTip();
393 } 390 }
394 391
@@ -599,8 +596,6 @@ function validateCaptchaSmsAsync() { @@ -599,8 +596,6 @@ function validateCaptchaSmsAsync() {
599 } 596 }
600 597
601 return defer.promise(); 598 return defer.promise();
602 - }).always(function() {  
603 - refreshSmsCaptchaEvent.fire();  
604 }); 599 });
605 } 600 }
606 601
@@ -995,7 +990,6 @@ $captchaSmsBtn.on('click', function() { @@ -995,7 +990,6 @@ $captchaSmsBtn.on('click', function() {
995 .then(function() { 990 .then(function() {
996 return sendCaptchaSmsAsync().then(function(res) { 991 return sendCaptchaSmsAsync().then(function(res) {
997 if (res.code === 200) { 992 if (res.code === 200) {
998 - smsCaptchaImg.refresh();  
999 return $.Deferred().resolve().promise(); // eslint-disable-line 993 return $.Deferred().resolve().promise(); // eslint-disable-line
1000 } 994 }
1001 995