Skip to content

Commit 3b045f4

Browse files
committed
index: Remove obsolete inform msg code
1 parent 252dacb commit 3b045f4

4 files changed

Lines changed: 0 additions & 75 deletions

File tree

public_html/index.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<meta charset="utf-8">
66
<meta name="description" content="RPCS3 is a multi-platform open-source Sony PlayStation 3 emulator and debugger written in C++ for Windows, Linux, macOS and FreeBSD. The purpose of this project is to accurately emulate the PlayStation 3 in its entirety with the power of reverse engineering and community collaboration.">
77
<meta name="keywords" content="rpcs3, playstation, playstation 3, ps3, emulator, debugger, windows, linux, macos, freebsd, open source, x64, arm64, home">
8-
<meta name="google-site-verification" content="cO1o6sx54cvKxhbnYsABWtl4sYFj9uVKV0DxLKZkWv8"/>
98
<?php include 'lib/module/sys-meta.php';?>
109
<meta property="og:title" content="RPCS3 - The PlayStation 3 Emulator" />
1110
<meta property="og:description" content="RPCS3 is a multi-platform open-source Sony PlayStation 3 emulator and debugger written in C++ for Windows, Linux, macOS and FreeBSD made possible with the power of reverse engineering." />

public_html/lib/css/main.css

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -670,48 +670,6 @@ a:hover {
670670
border-bottom: 2px solid #fff
671671
}
672672

673-
.menu-con-inform {
674-
background: rgb(255 255 255 / 5%);
675-
height: auto;
676-
width: 100%;
677-
position: relative;
678-
font-family: Roboto-Regular;
679-
font-size: 14px;
680-
line-height: 35px;
681-
color: #fff;
682-
text-align: center;
683-
z-index: 9999;
684-
transition:all .1s ease-in-out 0s;
685-
display: none;
686-
}
687-
.menu-con-inform:hover {
688-
background: rgb(255 255 255 / 10%);
689-
}
690-
.menu-con-inform span a {
691-
color: #fff;
692-
}
693-
.menu-con-inform span a:hover {
694-
color: #fff;
695-
text-decoration:underline
696-
}
697-
.menu-btn-inform-close {
698-
background: rgb(255 255 255 / 10%) url(/img/icons/menu/exit.png) center center / 8px no-repeat;
699-
width: 20px;
700-
height: 20px;
701-
display: inline-block;
702-
top: 6px;
703-
left: 4px;
704-
position: relative;
705-
border-radius: 100%;
706-
border: solid 1px rgb(255 255 255 / 0%);
707-
cursor:pointer;
708-
transition:all .1s ease-in-out 0s;
709-
}
710-
.menu-btn-inform-close:hover {
711-
background: rgb(255 255 255 / 10%) url(/img/icons/menu/exit.png) center center / 8px no-repeat;
712-
border: solid 1px rgb(255 255 255 / 10%);
713-
}
714-
715673
.discord-menu-con-dimmer {
716674
width:100%;
717675
height:100%;

public_html/lib/css/scale.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,6 @@
214214
height:70px;
215215
background-size:20px
216216
}
217-
.menu-con-inform {
218-
display:none !important;
219-
}
220217
}
221218
@media screen and (max-width: 1030px) {
222219
.footer-tx1-developer {

public_html/lib/js/inc-settings.js

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,6 @@ $(document).ready(function() {
1515
Cookies.set("save-piracy-policy", piracyPolicyAgreed, { expires: 365, path: '/' });
1616
});
1717

18-
/*
19-
// Inform notice popup - keeping this separately to ensure it works exactly as before
20-
var informPolicyAgreed = Cookies.get("save-inform-policy") === "true";
21-
22-
function updateInformPolicyState(agreed) {
23-
$('.menu-btn-inform-close').toggleClass("activate-accept", agreed);
24-
$('.menu-con-inform').toggleClass("object-show", !agreed).toggleClass("object-hidden", agreed);
25-
26-
// Force display block when showing, none when hiding
27-
if (!agreed) {
28-
$('.menu-con-inform').css('display', 'block');
29-
} else {
30-
$('.menu-con-inform').css('display', 'none');
31-
}
32-
}
33-
*/
34-
35-
// Force display block on initial load if not agreed
36-
if (!informPolicyAgreed) {
37-
$('.menu-con-inform').css('display', 'block');
38-
}
39-
40-
updateInformPolicyState(informPolicyAgreed);
41-
42-
$('.menu-btn-inform-close').on('click', function() {
43-
informPolicyAgreed = !informPolicyAgreed;
44-
updateInformPolicyState(informPolicyAgreed);
45-
Cookies.set("save-inform-policy", informPolicyAgreed, { expires: 365, path: '/' });
46-
});
4718

4819
// Configuration for other toggle features
4920
const features = [

0 commit comments

Comments
 (0)