|
|
|
|
|
|
|
App.Actions.DB.update_dns_record_hint = function(elm, hint) { |
|
|
|
if (hint.trim() == '') { |
|
|
|
|
|
|
|
$(elm).parent().find('.hint').text(''); |
|
} |
|
|
|
|
|
if (hint == '@') { |
|
hint = ''; |
|
} |
|
|
|
|
|
if (hint == GLOBAL.DNS_REC_PREFIX + '.') { |
|
hint = ''; |
|
} |
|
|
|
|
|
if (hint != '' && hint.slice(-1) != '.') { |
|
hint += '.'; |
|
} |
|
|
|
$(elm).parent().find('.hint').text(hint + GLOBAL.DNS_REC_PREFIX); |
|
} |
|
|
|
|
|
|
|
App.Listeners.DB.keypress_dns_rec_entry = function() { |
|
var ref = $('input[name="v_rec"]'); |
|
var current_rec = ref.val(); |
|
if (current_rec.trim() != '') { |
|
App.Actions.DB.update_dns_record_hint(ref, current_rec); |
|
} |
|
|
|
ref.bind('keypress input', function(evt) { |
|
clearTimeout(window.frp_usr_tmt); |
|
window.frp_usr_tmt = setTimeout(function() { |
|
var elm = $(evt.target); |
|
App.Actions.DB.update_dns_record_hint(elm, $(elm).val()); |
|
}, 100); |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
App.Listeners.DB.keypress_dns_rec_entry(); |
|
|