* Updates the state of the Sign out button.
()
| 223 | * Updates the state of the Sign out button. |
| 224 | */ |
| 225 | function updateSignOutButtonUI() { |
| 226 | if (auth.currentUser) { |
| 227 | signOutButton.style.display = 'block'; |
| 228 | } else { |
| 229 | signOutButton.style.display = 'none'; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Updates the Signed in user status panel. |