diff --git a/api/js/framework/fw_base.js b/api/js/framework/fw_base.js index 195ceb6a08..a4f767c31d 100644 --- a/api/js/framework/fw_base.js +++ b/api/js/framework/fw_base.js @@ -835,6 +835,18 @@ var fw_base = (function(){ "use strict"; return Class.extend( window.location = _url; }, + /** + * This method only used for status app when it tries to broadcast data to users + * avoiding throwing exceptions for users whom might have no status app access + * + * @param {type} _data + * @returns {undefined} + */ + execPushBroadcastAppStatus: function(_data) + { + if (app.status) app.status.mergeContent(_data, true); + }, + /** * Sets the active framework application to the application specified by _app * diff --git a/api/js/framework/fw_desktop.js b/api/js/framework/fw_desktop.js index 61cab2046d..7e934ad5a5 100644 --- a/api/js/framework/fw_desktop.js +++ b/api/js/framework/fw_desktop.js @@ -550,18 +550,6 @@ } }, - /** - * This method only used for status app when it tries to broadcast data to users - * avoiding throwing exceptions for users whom might have no status app access - * - * @param {type} _data - * @returns {undefined} - */ - execPushBroadcastAppStatus: function(_data) - { - if (app.status) app.status.mergeContent(_data, true); - }, - /** * Get color scheme * @return {string|null} returns active color scheme mode or null in case browser not supporting it