|
@@ -50,7 +50,13 @@ $( function(){
|
|
|
|
|
|
location.href = '/mobile/menu';
|
|
|
} else {
|
|
|
- $("#errMsg").text( resultMsg );
|
|
|
+ $("#errMsg").text( resultMsg ).stop().animate({
|
|
|
+ marginLeft: "5px"
|
|
|
+ }, 50, function(){
|
|
|
+ $(this).animate({
|
|
|
+ marginLeft: "0px"
|
|
|
+ }, 50);
|
|
|
+ });
|
|
|
};
|
|
|
}, null, null );
|
|
|
}
|
|
@@ -59,7 +65,6 @@ $( function(){
|
|
|
if (localStorage.getItem( "id" ) != null) {
|
|
|
autoLogin();
|
|
|
}
|
|
|
-
|
|
|
});
|
|
|
|
|
|
|