subs: Add stream_ui_updates.js module for managing ui elements.

This commit adds `stream_ui_updates.js` module. This module
will includes functions which will update different ui elements
(i.e. subscription button, subscriber count).
This commit is contained in:
Yashashvi Dave
2019-04-02 20:37:37 +05:30
committed by Tim Abbott
parent 98a1e340ad
commit 3649a9f15c
5 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
var stream_ui_updates = (function () {
var exports = {};
return exports;
}());
if (typeof module !== 'undefined') {
module.exports = stream_ui_updates;
}
window.stream_ui_updates = stream_ui_updates;