* Installs the app in the sidebar. * @param {boolean} prepend * @returns {void}
(prepend = false)
| 51 | * @returns {void} |
| 52 | */ |
| 53 | install(prepend = false) { |
| 54 | if (prepend) { |
| 55 | $apps.prepend(this.#icon); |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | $apps.append(this.#icon); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Initialize the sidebar element. |
no test coverage detected