|
@ -67,13 +67,15 @@
|
67
|
67
|
}
|
68
|
68
|
document.getElementById("username").addEventListener("focus",function(){
|
69
|
69
|
focusThis();
|
70
|
|
}).addEventListener("blur",function(){
|
|
70
|
})
|
|
71
|
document.getElementById("username").addEventListener("blur",function(){
|
71
|
72
|
blurThis();
|
72
|
73
|
})
|
73
|
74
|
|
74
|
75
|
document.getElementById("password").addEventListener("focus",function(){
|
75
|
76
|
focusThis();
|
76
|
|
}).addEventListener("blur",function(){
|
|
77
|
})
|
|
78
|
document.getElementById("password").addEventListener("blur",function(){
|
77
|
79
|
blurThis();
|
78
|
80
|
})
|
79
|
81
|
|