mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
js: Convert static/js/ui.js to ES6 module.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
8dbaf2d680
commit
5cc1f8d289
@@ -92,7 +92,8 @@ const submessage = {__esModule: true};
|
||||
rewiremock("../../static/js/submessage").with(submessage);
|
||||
const typing_events = {__esModule: true};
|
||||
rewiremock("../../static/js/typing_events").with(typing_events);
|
||||
const ui = set_global("ui", {});
|
||||
const ui = {__esModule: true};
|
||||
rewiremock("../../static/js/ui").with(ui);
|
||||
const unread_ops = {__esModule: true};
|
||||
rewiremock("../../static/js/unread_ops").with(unread_ops);
|
||||
const user_events = {__esModule: true};
|
||||
|
||||
Reference in New Issue
Block a user