* Updates the state of the Sign out button.
()
| 239 | * Updates the state of the Sign out button. |
| 240 | */ |
| 241 | function updateSignOutButtonUI() { |
| 242 | if (auth.currentUser) { |
| 243 | signOutButton.style.display = 'block'; |
| 244 | } else { |
| 245 | signOutButton.style.display = 'none'; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * Updates the Signed in user status panel. |