()
| 2718 | // DOM initialization |
| 2719 | // ================================================================= |
| 2720 | #getScriptAttributes() { |
| 2721 | if (this.#scriptAttrs == null) { |
| 2722 | this.#scriptAttrs = config.attributes.replaceAll(" ", "").split(","); |
| 2723 | } |
| 2724 | return this.#scriptAttrs; |
| 2725 | } |
| 2726 | #getScript(elt) { |
| 2727 | var attrs = this.#getScriptAttributes(); |
| 2728 | for (var i = 0; i < attrs.length; i++) { |
no outgoing calls
no test coverage detected