Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #18979 from gitmai/bug-1006348-app-mantain-previou…
Browse files Browse the repository at this point in the history
…s-view

Bug 1006348 -[Cost control] After minimizing the app with the settings s...
  • Loading branch information
gitmai committed May 6, 2014
2 parents c37c232 + e2dd1da commit a3abb00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/costcontrol/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ var CostControlApp = (function() {

function hideNotReadyScreen(status) {
debug('Hiding non-ready screen.');
vmanager.closeCurrentView();
if (vmanager.getCurrentView() === 'non-ready-screen') {
vmanager.closeCurrentView();
}
return;
}

Expand Down

0 comments on commit a3abb00

Please sign in to comment.