mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Add missing exports to js modules
This commit is contained in:
committed by
showell
parent
0d5a0d02b3
commit
5639f21188
@@ -405,3 +405,7 @@ exports.fatal = function blueslip_fatal (msg, more_info) {
|
||||
|
||||
return exports;
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = blueslip;
|
||||
}
|
||||
|
||||
@@ -1201,5 +1201,8 @@ $(function () {
|
||||
});
|
||||
|
||||
return exports;
|
||||
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = compose;
|
||||
}
|
||||
|
||||
@@ -365,3 +365,7 @@ $(document).on('narrow_deactivated.zulip', function () {
|
||||
|
||||
return exports;
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = message_edit;
|
||||
}
|
||||
|
||||
@@ -718,3 +718,7 @@ exports.set_userlist_placement = function (placement) {
|
||||
|
||||
return exports;
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = popovers;
|
||||
}
|
||||
|
||||
@@ -632,3 +632,7 @@ $(function () {
|
||||
|
||||
return exports;
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = ui;
|
||||
}
|
||||
|
||||
@@ -342,3 +342,7 @@ $(function () {
|
||||
|
||||
return exports;
|
||||
}());
|
||||
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = viewport;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user