overwrite 0.1.0 overwrite: ^0.1.0 copied to clipboard
Overwrite mode for text area elements in Dart
overwrite #
Overwrite mode for textarea elements in Dart
To put a textarea element into overwrite mode, construct an Overwrite object with the element.
new Overwrite(query("textarea"));
New text typed into the textarea will overwrite the existing content instead of inserting it.
Overwrite also handles deleting and backspacing single characters and selections, cut, and paste.
When the textarea receives focus, overwrite pads the value with spaces to fill the client width of the element.