mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-10 19:46:34 +03:00
Fix options page not showing on Chrome 74 (Chromium 73 works fine)
This commit is contained in:
parent
4beb6e9fcb
commit
89f394b9a5
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html style="display: none; will-change: contents, display">
|
||||
<html style="visibility: hidden; will-change: contents, visibility">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Настройки</title>
|
||||
|
|
|
@ -49,7 +49,7 @@ chrome.runtime.getBackgroundPage( (bgWindow) =>
|
|||
);
|
||||
// READY TO RENDER
|
||||
|
||||
const show = () => { document.documentElement.style.display = 'initial'; };
|
||||
const show = () => { document.documentElement.style.visibility = 'initial'; };
|
||||
|
||||
if (theState.flags.ifInsideOptionsPage) {
|
||||
show();
|
||||
|
|
Loading…
Reference in New Issue
Block a user