* Updates the state of the Sign out button.
()
| 52 | * Updates the state of the Sign out button. |
| 53 | */ |
| 54 | function updateSignOutButtonUI() { |
| 55 | if (auth.currentUser) { |
| 56 | signOutButton.style.display = 'block'; |
| 57 | } else { |
| 58 | signOutButton.style.display = 'none'; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Updates the Signed in user status panel. |