This commit is contained in:
Acid Chicken (硫酸鶏) 2020-04-28 14:55:12 +09:00
parent 7860839220
commit b862c055ae
No known key found for this signature in database
GPG Key ID: 5388F56C75B677A1
1 changed files with 12 additions and 3 deletions

View File

@ -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);
} }
}, },