Requires

Provides

Textarea.js

Multiline text input

License:
Public domain (http://unlicense.org).
Authors:
Yaroslaff Fedin
  1. 21
  2. 22
  3. 23
  4. 24
  5. 25
  6. 26
  7. 27
  8. 28
  9. 29
  10. 30
  11. 31
  12. 32
LSD.Widget.Textarea = new Class({ Extends: LSD.Widget.Input, options: { tag: 'textarea', }, getInput: function() { if (!this.input) this.input = new Element('textarea'); return this.input; } });