fix for constantly resetting focus

10.3.x-maintenance
cTn 2014-09-19 18:45:57 +02:00
parent 741961cce4
commit 036308fcdb
1 changed files with 1 additions and 2 deletions

View File

@ -98,9 +98,8 @@ TABS.receiver.initialize = function (callback) {
// limit length to max 8
if (val.length > 8) {
val = val.substr(0, 8);
$(this).val(val);
}
$(this).val(val);
});
$('input[name="rcmap"]').focusout(function () {