File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ export default (emitter: EmitterType): Promise<IframeApiType> => {
16
16
resolve ( window . YT ) ;
17
17
18
18
return ;
19
+ } else {
20
+ const protocol = window . location . protocol === 'http:' ? 'http:' : 'https:' ;
21
+
22
+ load ( protocol + '//www.youtube.com/iframe_api' , ( error ) => {
23
+ if ( error ) {
24
+ emitter . trigger ( 'error' , error ) ;
25
+ }
26
+ } ) ;
19
27
}
20
28
21
29
const previous = window . onYouTubeIframeAPIReady ;
@@ -31,13 +39,5 @@ export default (emitter: EmitterType): Promise<IframeApiType> => {
31
39
} ;
32
40
} ) ;
33
41
34
- const protocol = window . location . protocol === 'http:' ? 'http:' : 'https:' ;
35
-
36
- load ( protocol + '//www.youtube.com/iframe_api' , ( error ) => {
37
- if ( error ) {
38
- emitter . trigger ( 'error' , error ) ;
39
- }
40
- } ) ;
41
-
42
42
return iframeAPIReady ;
43
43
} ;
You can’t perform that action at this time.
0 commit comments