1 /** 2 * @fileoverview A class which implements a multi-line 3 * text control. 4 */ 5 6 goog.provide('xrx.textarea'); 7 8 9 10 /** 11 * @constructor 12 */ 13 xrx.textarea = function(element) { 14 15 16 17 /** 18 * call constructor of class xrx.codemirror 19 * @param {!xrx.textarea} 20 * @param {Element} 21 */ 22 goog.base(this, element); 23 }; 24 goog.inherits(xrx.textarea, xrx.codemirror); 25 26 27 28 29 xrx.textarea.prototype.options = { 30 'lineWrapping': true 31 }; 32 33