()
| 246 | }); |
| 247 | } |
| 248 | _setLocale() { |
| 249 | if (this.closest(':lang(fr)') === this) { |
| 250 | this.locale = M.options.localeFr; |
| 251 | } else if (this.closest(':lang(en)') === this) { |
| 252 | this.locale = M.options.localeEn; |
| 253 | } else { |
| 254 | // "browser" locale |
| 255 | this.locale = M.options.locale; |
| 256 | } |
| 257 | } |
| 258 | _initShadowRoot() { |
| 259 | if (!this.shadowRoot) { |
| 260 | this.attachShadow({ mode: 'open' }); |