Merge branch 'master' of git.daplie.com:OAuth3/oauth3.js

This commit is contained in:
Drew Warren 2017-07-12 16:11:09 -06:00
commit 7f1e67aaee
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**: