fix for constantly resetting focus
parent
741961cce4
commit
036308fcdb
|
@ -98,9 +98,8 @@ TABS.receiver.initialize = function (callback) {
|
||||||
// limit length to max 8
|
// limit length to max 8
|
||||||
if (val.length > 8) {
|
if (val.length > 8) {
|
||||||
val = val.substr(0, 8);
|
val = val.substr(0, 8);
|
||||||
|
$(this).val(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
$(this).val(val);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$('input[name="rcmap"]').focusout(function () {
|
$('input[name="rcmap"]').focusout(function () {
|
||||||
|
|
Loading…
Reference in New Issue