admin panel version update
This commit is contained in:
@@ -27,8 +27,8 @@ $(document).ready(function () {
|
||||
}
|
||||
|
||||
// Login
|
||||
$("#username").keypress(function (e) { if(e.which == 13) $("#password").focus(); });
|
||||
$("#password").keypress(function (e) { if(e.which == 13) $("#btnLogin").click(); });
|
||||
$("#username").keypress(function (e) { if(e.which === 13) $("#password").focus(); });
|
||||
$("#password").keypress(function (e) { if(e.which === 13) $("#btnLogin").click(); });
|
||||
$("#btnLogin").click(function() {
|
||||
const username = $("#username").val();
|
||||
const password = $("#password").val();
|
||||
|
||||
2
js/admin.min.js
vendored
2
js/admin.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user