mirror of https://github.com/zulip/zulip.git
15 lines
251 B
JavaScript
15 lines
251 B
JavaScript
|
var compose_ui = (function () {
|
||
|
|
||
|
var exports = {};
|
||
|
|
||
|
exports.autosize_textarea = function () {
|
||
|
$("#new_message_content").trigger("autosize.resize");
|
||
|
};
|
||
|
|
||
|
return exports;
|
||
|
|
||
|
}());
|
||
|
if (typeof module !== 'undefined') {
|
||
|
module.exports = compose_ui;
|
||
|
}
|