fix filling in nickname overriding username (in add network tab)

This commit is contained in:
Stephan 2017-01-09 16:24:04 +00:00 committed by stepie22
parent d9cde04af6
commit 3318acd16b
1 changed files with 19 additions and 1 deletions

View File

@ -1283,9 +1283,27 @@ $(function() {
);
});
forms.on("focusin", ".nick", function() {
// Need to set the first "lastvalue", so it can be used in the below function
var nick = $(this);
nick.data("lastvalue", nick.val());
});
forms.on("input", ".nick", function() {
var nick = $(this).val();
forms.find(".username").val(nick);
var usernameInput = forms.find(".username");
// Because this gets called /after/ it has already changed, we need use the previous value
var lastValue = $(this).data("lastvalue");
// They were the same before the change, so update the username field
if (usernameInput.val() === lastValue) {
usernameInput.val(nick);
}
// Store the "previous" value, for next time
$(this).data("lastvalue", nick);
});
Mousetrap.bind([