BroadSoft-Xtended/Product-Phone-for-Chrome

When you are fullscreen and then you get out of fullscreen, the onRestore is fired.

Opened this issue · 0 comments

Making the app go to the small size

chrome.app.window.current().onRestored.addListener(function(){
console.log('onResized fired', chrome.app.window.current().isMinimized());
if(!$rootScope.minimized){
Utility.setChromeToMinSize();
}
$rootScope.minimized = false;
});