mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Video player "menu" button added
Toggles display of all appropriate video controls for video player sizes < 100%
This commit is contained in:
parent
a61b36b74c
commit
8216e6d956
5 changed files with 99 additions and 16 deletions
|
@ -30,11 +30,11 @@
|
|||
self.updateVolumeButtons = function (vol) {
|
||||
|
||||
if (vol) {
|
||||
self.muteButton.show();
|
||||
self.unmuteButton.hide();
|
||||
self.muteButton.show().prop("disabled", false);
|
||||
self.unmuteButton.hide().prop("disabled", true);
|
||||
} else {
|
||||
self.muteButton.hide();
|
||||
self.unmuteButton.show();
|
||||
self.muteButton.hide().prop("disabled", true);
|
||||
self.unmuteButton.show().prop("disabled", false);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue