@@ -88,26 +88,26 @@ export default class JehonImageLoading extends HTMLElement {
88
88
* @returns {JehonImageLoading } for chaining
89
89
*/
90
90
loadAndDisplayImage ( url , whenReady = true ) {
91
- if ( url == this . #currentURL) {
92
- return ;
93
- }
94
- this . #currentURL = url ;
95
-
96
- const el = document . createElement ( 'img' ) ;
97
- el . setAttribute ( 'src' , url ) ;
98
- el . setAttribute ( 'loading' , 1 ) ;
99
- this . shadowRoot . appendChild ( el ) ;
100
-
101
- el . addEventListener ( 'load' , ( ) => {
102
- this . shadowRoot . querySelectorAll ( 'img:not([loading])' ) . forEach ( img => img . remove ( ) ) ;
103
- el . removeAttribute ( 'loading' ) ;
104
- this . dispatchEvent ( new CustomEvent ( 'load' , { detail : url } ) ) ;
105
- } ) ;
106
-
107
- if ( ! whenReady ) {
108
- // Simulate that we are ready
109
- el . dispatchEvent ( new Event ( 'load' ) ) ;
91
+ if ( url != this . #currentURL) {
92
+ this . #currentURL = url ;
93
+
94
+ const el = document . createElement ( 'img' ) ;
95
+ el . setAttribute ( 'src' , url ) ;
96
+ el . setAttribute ( 'loading' , 1 ) ;
97
+ this . shadowRoot . appendChild ( el ) ;
98
+
99
+ el . addEventListener ( 'load' , ( ) => {
100
+ this . shadowRoot . querySelectorAll ( 'img:not([loading])' ) . forEach ( img => img . remove ( ) ) ;
101
+ el . removeAttribute ( 'loading' ) ;
102
+ this . dispatchEvent ( new CustomEvent ( 'load' , { detail : url } ) ) ;
103
+ } ) ;
104
+
105
+ if ( ! whenReady ) {
106
+ // Simulate that we are ready
107
+ el . dispatchEvent ( new Event ( 'load' ) ) ;
108
+ }
110
109
}
110
+
111
111
return this ;
112
112
}
113
113
}
0 commit comments