This commit is contained in:
lopar 2018-03-01 22:37:17 +02:00
parent a97a29f87d
commit 33f05ab742
2 changed files with 7 additions and 30 deletions

View File

@ -132,37 +132,15 @@ include("config.php");
}
}
function getInternetExplorerVersion() {
var rv = -1;
if (navigator.appName == 'Microsoft Internet Explorer') {
var ua = navigator.userAgent;
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
if (re.exec(ua) != null) {
rv = parseFloat(RegExp.$1);
}
}
if (rv == -1) {
if (navigator.userAgent.match(/Trident\/7.0.*rv.*11\.0/)) return 1;
}
if (rv == -1) {
if (navigator.appVersion.indexOf("MSIE 10") !== -1) return 1;
}
return rv;
}
var frmval = 1;
var addstyle = "";
if (getInternetExplorerVersion() != -1) {
frmval = 0;
addstyle = ' style="border-left: 1px solid #cccccc" ';
}
var user = getCookie("battle");
if ((user == null) || (user == '')) {
document.write('<BODY>Внимание! В вашем браузере отключена поддержка Cookies. Включите чтобы играть.<BR></BODY>');
} else {
document.write(
'<frameset rows="37, *, 30">' +
'<frameset rows="45, *, 30">' +
'<frame src="top_menu.php" scrolling="no" noresize="noresize" FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0">' +
'<frameset rows="72%, *, 0">' +
'<frame name="main" src="main.php?top=' + rnd + '" style="border-bottom-width: 2px; border-bottom-style:solid; border-bottom-color:#B0B0B0">' +
@ -179,6 +157,5 @@ include("config.php");
<meta content="MSHTML 5.00.2614.3500" name="GENERATOR"/>
</head>
<body style="text-align: center;">
<noscript><span style="color: Red;">Внимание!</span> В вашем браузере отключена поддержка JavaScript. Включите чтобы играть.</noscript>
</body>
</html>

View File

@ -20,7 +20,7 @@
li img {
float: right;
margin: 6px;
margin: 5px;
border: 1px solid #fff;
-webkit-transition: box-shadow 0.5s ease;
@ -38,11 +38,11 @@
<body>
<div>
<ul>
<li><a href="#"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/user_anketa.php" title="Анкета"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/blocknote.php" title="Блокнот"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/friend.php" title="Друзья"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/main.php?edit=1" title="Инвентарь"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="#" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/user_anketa.php" title="Анкета" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/blocknote.php" title="Блокнот" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/friend.php" title="Друзья" target="main"><img src="http://placehold.it/32x32" /></a></li>
<li><a href="/main.php?edit=1" title="Инвентарь" target="main"><img src="http://placehold.it/32x32" /></a></li>
</ul>
</div>