Files
GTA4RP/third-party/mexui/Core/Control/TextArea.js
Vortrex caa6b3986f Revert "Update xml"
This reverts commit 9b8d1f2257.
2021-01-26 04:16:05 -06:00

7 lines
339 B
JavaScript

mexui.util.createControlConstructor('TextArea', false, function(window, x, y, w, h, text, styles, callback)
{
mexui.Control.TextInput.call(this, window, x, y, w, h, text, this.linkControlStyles('TextArea', styles), callback, false, true);
this.multiLine = true;
});
mexui.util.extend(mexui.Control.TextArea, mexui.Control.TextInput);