Skip to content

Commit

Permalink
Improving preventDefault implementation
Browse files Browse the repository at this point in the history
* Ensuring form submission is handled on non credentials enabled
  browsers.
  • Loading branch information
paul-matthews committed Jan 27, 2016
1 parent d2f0436 commit 6b14c4f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions demos/credential-management/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,12 @@ document.querySelector('#signout').addEventListener('click', function () {
*/
function handleFederation(e) {
console.log("Signed in via a federation!");
e.preventDefault();

if (navigator.credentials) {
// Stop the default form submission.
e.preventDefault();

// In a real environment extract the credentials from the federated credential response.
var c = new FederatedCredential({
id: '[email protected]',
provider: 'https://accounts.federation.com/',
Expand All @@ -107,9 +110,13 @@ function handleFederation(e) {
*/
document.querySelector('form').addEventListener('submit', function (e) {
console.log("Submitted a sign-in form.");
e.preventDefault();

if (navigator.credentials) {
// Stop the default form submission.
e.preventDefault();

// In a real site, we'd check the credentials are valid

var c = new PasswordCredential({
id: document.querySelector('#username').value,
password: document.querySelector('#password').value,
Expand Down

0 comments on commit 6b14c4f

Please sign in to comment.