mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 02:13:43 +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>
|
<!DOCTYPE html>
|
||||||
<html style="display: none; will-change: contents, display">
|
<html style="visibility: hidden; will-change: contents, visibility">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Настройки</title>
|
<title>Настройки</title>
|
||||||
|
|
|
@ -49,7 +49,7 @@ chrome.runtime.getBackgroundPage( (bgWindow) =>
|
||||||
);
|
);
|
||||||
// READY TO RENDER
|
// READY TO RENDER
|
||||||
|
|
||||||
const show = () => { document.documentElement.style.display = 'initial'; };
|
const show = () => { document.documentElement.style.visibility = 'initial'; };
|
||||||
|
|
||||||
if (theState.flags.ifInsideOptionsPage) {
|
if (theState.flags.ifInsideOptionsPage) {
|
||||||
show();
|
show();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user