mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
Fixed edit empty ftp user domain; Fixed hints updates on data insertion inside inputs; Fixed bug with resetting passwords for FTP user accounts;
This commit is contained in:
parent
b7724e5b7e
commit
47ade32146
3 changed files with 39 additions and 37 deletions
|
@ -21,7 +21,7 @@ App.Listeners.WEB.keypress_ftp_username = function() {
|
|||
App.Actions.WEB.update_ftp_username_hint(ref, current_val);
|
||||
}
|
||||
|
||||
ref.bind('keypress', function(evt) {
|
||||
ref.bind('keypress input', function(evt) {
|
||||
clearTimeout(window.frp_usr_tmt);
|
||||
window.frp_usr_tmt = setTimeout(function() {
|
||||
var elm = $(evt.target);
|
||||
|
@ -57,7 +57,7 @@ App.Listeners.WEB.keypress_ftp_path = function() {
|
|||
App.Actions.WEB.update_ftp_path_hint(ref, current_val);
|
||||
}
|
||||
|
||||
ref.bind('keypress', function(evt) {
|
||||
ref.bind('keypress input', function(evt) {
|
||||
clearTimeout(window.frp_usr_tmt);
|
||||
window.frp_usr_tmt = setTimeout(function() {
|
||||
var elm = $(evt.target);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue