* Starts the sign-in process.
()
| 80 | * Starts the sign-in process. |
| 81 | */ |
| 82 | function startSignIn() { |
| 83 | document.getElementById('quickstart-button').disabled = true; |
| 84 | if (firebase.auth().currentUser) { |
| 85 | firebase.auth().signOut(); |
| 86 | } else { |
| 87 | startAuth(true); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | window.onload = function() { |
| 92 | initApp(); |
nothing calls this directly
no test coverage detected