Skip to content

Commit

Permalink
Merge pull request #57 from AN0NCER/develop
Browse files Browse the repository at this point in the history
Fix error #56
  • Loading branch information
AN0NCER authored Oct 24, 2023
2 parents 5a1a739 + 54803ba commit 1d7190a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions javascript/pages/tunimeplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ OnPlayerPlay(() => {
} else if (VideoPlayer.requestFullscreen) {
VideoPlayer.requestFullscreen();
}
first_play = true;
})
}
}
Expand Down
2 changes: 2 additions & 0 deletions style/css/tunimeplayer.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@charset "UTF-8";
body,
html {
background: #15171e;
Expand Down Expand Up @@ -123,6 +124,7 @@ video {
left: 0;
right: 0;
bottom: 0;
pointer-events: none; /* Этот элемент не будет реагировать на события мыши */
}
.fullscreen-wrapper .fk-cube {
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion style/tunimeplayer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ video {
left: 0;
right: 0;
bottom: 0;
// display: none;
pointer-events: none; /* Этот элемент не будет реагировать на события мыши */

.fk-cube {
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var version = '98';
var version = '99';
var cacheName = 'pwa-tunime-v' + version;
var appShellFilesToCache = [
// Директория: /images/icons
Expand Down

0 comments on commit 1d7190a

Please sign in to comment.