mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
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;
|
|
}
|