Skip to content

Commit

Permalink
Test orsay
Browse files Browse the repository at this point in the history
  • Loading branch information
yumata committed Nov 7, 2024
1 parent 2ca8389 commit f828a1b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 5 additions & 3 deletions app.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -1957,7 +1957,7 @@
var object$2 = {
author: 'Yumata',
github: 'https://github.com/yumata/lampa-source',
css_version: '2.4.2',
css_version: '2.4.3',
app_version: '2.1.9',
cub_domain: 'cub.red'
};
Expand Down Expand Up @@ -5602,7 +5602,8 @@
}

function keydownTrigger(e) {
var keycode = keyCode(e); //Noty.show(keycode)
var keycode = keyCode(e);
if (Platform.is('orsay')) Noty.show(keycode);
if (time$2 > Date.now() - 100) return;
time$2 = Date.now();
listener$k.send('keydown', {
Expand Down Expand Up @@ -19068,6 +19069,7 @@
videobox = $('<video class="player-video__video" poster="./img/video_poster.png" crossorigin="anonymous"></video>');
if (Platform.is('apple') && Storage.field('player') !== 'ios') videobox.attr('playsinline', 'true');
_video = videobox[0];
if (typeof _video.canPlayType !== 'function') _video.canPlayType = function () {};

if (Storage.field('player_normalization')) {
try {
Expand Down Expand Up @@ -38789,7 +38791,7 @@
if (Platform.is('android')) Android.exit();
if (Platform.is('orsay')) Orsay.exit();
if (Platform.is('netcast')) window.NetCastBack();
if (Platform.is('noname')) window.history.go(0);
if (Platform.is('noname')) window.history.back();
}

function popupCloseApp() {
Expand Down
6 changes: 6 additions & 0 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,12 @@ body.ambience--enable .head {
overflow: hidden;
}

/* Фикс для orsay */
.online-prestige-watched__icon {
width: 1.5em;
height: 1.5em;
}

@-webkit-keyframes head-icon-blick {
0% {
background-position: 0% 50%;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<link rel="stylesheet" href="./vender/scrollbar/jquery.scrollbar.css">
<link rel="stylesheet" href="./vender/keypad/style.css">

<link rel="stylesheet" href="css/app.css?v=4.37">
<link rel="stylesheet" href="css/app.css?v=4.38">
</head>
<body>
<div class="welcome"></div>
Expand Down

0 comments on commit f828a1b

Please sign in to comment.