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 #21831 from sergi/blank_screen
Browse files Browse the repository at this point in the history
Bug 1038815 - Contacts can get into a 'frozen' state in some cases r=francisco
  • Loading branch information
sergi authored and rvandermeulen committed Aug 20, 2014
1 parent 806d37a commit a36a504
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/communications/contacts/js/navigation.js
Expand Up @@ -137,6 +137,7 @@ function navigationStack(currentView) {
next.classList.add('current');
var realCurrentView = document.getElementById(_currentView);
var _callbackInner = function _callback() {
next.classList.add('current');
realCurrentView.classList.remove('current');
if (callback) {
callback();
Expand Down Expand Up @@ -239,6 +240,7 @@ function navigationStack(currentView) {

document.getElementById(nextView.view).classList.add('current');
var _callbackInner = function _callbackInner() {
document.getElementById(nextView.view).classList.add('current');
currentClassList.remove('current');
if (callback) {
callback();
Expand Down

0 comments on commit a36a504

Please sign in to comment.