Fix bug
This commit is contained in:
parent
7860839220
commit
b862c055ae
@ -23,7 +23,7 @@ export default Vue.extend({
|
|||||||
props: {
|
props: {
|
||||||
sitekey: {
|
sitekey: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
value: {
|
value: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -37,13 +37,22 @@ export default Vue.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
if (window.hcaptcha) {
|
if (window.hcaptcha) { // loaded
|
||||||
this.available = true;
|
this.available = true;
|
||||||
} else {
|
} else {
|
||||||
|
const alreadyLoading = document.getElementById('hcaptcha');
|
||||||
|
|
||||||
|
if (alreadyLoading) { // loading
|
||||||
|
alreadyLoading.addEventListener('load', () => this.available = true);
|
||||||
|
|
||||||
|
return;
|
||||||
|
} // init
|
||||||
|
|
||||||
const script = document.createElement('script');
|
const script = document.createElement('script');
|
||||||
script.addEventListener('load', () => this.available = true);
|
script.addEventListener('load', () => this.available = true);
|
||||||
script.src = 'https://hcaptcha.com/1/api.js?render=explicit';
|
|
||||||
script.async = true;
|
script.async = true;
|
||||||
|
script.id = 'hcaptcha';
|
||||||
|
script.src = 'https://hcaptcha.com/1/api.js?render=explicit';
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user