[-] BO : fixed range deletion when press enter on input 'all' on carrier wizard

This commit is contained in:
Vincent Augagneur
2013-08-19 10:20:22 +02:00
parent 218ce59de6
commit bad151a66f

View File

@@ -302,6 +302,12 @@ function bind_inputs()
}
});
$('tr.fees_all td input:text').keypress( function (evn) {
index = $(this).parent('td').index();
if (evn.keyCode == 13)
return false;
});
$('tr.range_sup td input:text, tr.range_inf td input:text').typeWatch({
captureLength: 0,
highlight: false,