mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-09 19:00:48 +00:00
fix checkstyle
This commit is contained in:
parent
cfc25ed81f
commit
8446bc5a04
@ -57,7 +57,8 @@ public class InputBar extends HorizontalLayout implements LocaleChangeObserver {
|
|||||||
inputField = new TextField();
|
inputField = new TextField();
|
||||||
inputField.setId(INPUT_FIELD_ID);
|
inputField.setId(INPUT_FIELD_ID);
|
||||||
inputField.setClearButtonVisible(true);
|
inputField.setClearButtonVisible(true);
|
||||||
inputField.setMaxLength(MAX_INPUT_LENGTH); // TODO: perhaps remove the error message? more than 1000 can't be entered now
|
inputField.setMaxLength(MAX_INPUT_LENGTH);
|
||||||
|
// TODO: perhaps remove the error message? more than 1000 can't be entered now
|
||||||
// attach a listener that replaces \ with λ
|
// attach a listener that replaces \ with λ
|
||||||
// JavaScript is used because Vaadin does not have APIs for selectionStart/selectionEnd
|
// JavaScript is used because Vaadin does not have APIs for selectionStart/selectionEnd
|
||||||
// and this will be much faster than a bunch of network round trips per character entered!
|
// and this will be much faster than a bunch of network round trips per character entered!
|
||||||
|
Loading…
Reference in New Issue
Block a user