update README

This commit is contained in:
Drew Warren 2017-07-07 11:45:37 -06:00
parent 9f9610b6f5
commit 146891a618
1 changed files with 12 additions and 0 deletions

View File

@ -260,6 +260,18 @@ function onClickLogin() {
onChangeProvider('oauth3.org');
```
A user's e-mail can be passed into the clientParams object as `clientParams.subject`.
To auto-populate the e-mail input of the login popup, make sure the input has the class `js-oauth3-email`.
Example:
```js
if (clientParams.subject) {
$('.js-oauth3-email').val(clientParams.subject);
$('.js-authn-show').prop('disabled', false);
}
```
### Compatibility with Frameworks and Libraries
**jQuery**: