update README
This commit is contained in:
parent
9f9610b6f5
commit
146891a618
12
README.md
12
README.md
|
@ -260,6 +260,18 @@ function onClickLogin() {
|
||||||
onChangeProvider('oauth3.org');
|
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
|
### Compatibility with Frameworks and Libraries
|
||||||
|
|
||||||
**jQuery**:
|
**jQuery**:
|
||||||
|
|
Loading…
Reference in New Issue