소스 검색

Fix pressing backspace in the search box deleting an entity

master
Fen Dweller 3 년 전
부모
커밋
59920cc288
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      macrovision.js

+ 4
- 0
macrovision.js 파일 보기

@@ -4912,6 +4912,10 @@ document.addEventListener("DOMContentLoaded", () => {
.querySelector("#search-box")
.addEventListener("change", (e) => doSearch(e.target.value));


document
.querySelector("#search-box")
.addEventListener("keydown", e => e.stopPropagation());
// Webkit doesn't draw resized SVGs correctly. It will always draw them at their intrinsic size, I think
// This checks for that.
webkitBugTest.onload = () => {


불러오는 중...
취소
저장