Return the promise if available

This commit is contained in:
nathangray
2019-01-10 14:21:05 -07:00
parent 45180fa2d2
commit 511b2c2b20
2 changed files with 5 additions and 4 deletions

View File

@@ -269,7 +269,7 @@
*/
setActiveApp: function(_app)
{
this._super.apply(this, arguments);
var result = this._super.apply(this, arguments);
if (_app == _app.parentFw.activeApp)
{
@@ -296,6 +296,8 @@
framework.getToggleSidebarState();
framework.activeApp.browser.callResizeHandler();
}
return result;
},
/**