mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-24 17:20:51 +02:00
refactor: drop eslint config love (#1341)
* Drop eslint config love * More eqeqeq * Even more
This commit is contained in:
@@ -8,7 +8,7 @@ import { invoke } from "@tauri-apps/api/core";
|
||||
function openLinks(): void {
|
||||
document.querySelector("body")?.addEventListener("click", function (e) {
|
||||
let target: HTMLElement | null = e.target as HTMLElement;
|
||||
while (target != null) {
|
||||
while (target) {
|
||||
if (target.matches("a")) {
|
||||
const t = target as HTMLAnchorElement;
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user