[webauthn] Need to fix abort operation example

Kieun has just created a new issue for https://github.com/w3c/webauthn:

== Need to fix abort operation example ==
Session 12.4 shows the way to abort webauthn operations such as create() and get().
In order to invoke abort operation, we need to call abort() function of AbortController object.
See following link.
https://dom.spec.whatwg.org/#abortcontroller

So, we need to use authAbortController instead of authAbortSignal to invoking abort in the example.
```
if (widget == "disappear") {
    //authAbortSignal.abort(); 
    authAbortController.abort();
}
```

Please view or discuss this issue at https://github.com/w3c/webauthn/issues/844 using your GitHub account

Received on Friday, 16 March 2018 13:46:46 UTC