diff --git a/4chan_x.user.js b/4chan_x.user.js index 5e87df49e..b79b7a565 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3152,7 +3152,11 @@ width: 100%;\ }\ #qr #files input {\ - display: none;\ + /* cannot use `display: none;`\ + https://bugs.webkit.org/show_bug.cgi?id=58208\ + http://code.google.com/p/chromium/issues/detail?id=78961\ + */\ + visibility: hidden;\ }\ #qr #files img {\ max-height: 100px;\ diff --git a/script.coffee b/script.coffee index 6c5132df8..03a55ed7e 100644 --- a/script.coffee +++ b/script.coffee @@ -2483,7 +2483,11 @@ Main = width: 100%; } #qr #files input { - display: none; + /* cannot use `display: none;` + https://bugs.webkit.org/show_bug.cgi?id=58208 + http://code.google.com/p/chromium/issues/detail?id=78961 + */ + visibility: hidden; } #qr #files img { max-height: 100px;