mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update detail page
This commit is contained in:
parent
f5323ff3c2
commit
dc87e4ccc2
17 changed files with 102 additions and 36 deletions
|
@ -15753,7 +15753,8 @@ iron-selector:not(.narrow-layout) #main ::content [paper-drawer-toggle] {
|
|||
is: 'paper-tab',
|
||||
|
||||
behaviors: [
|
||||
Polymer.IronControlState
|
||||
Polymer.IronControlState,
|
||||
Polymer.IronButtonState
|
||||
],
|
||||
|
||||
properties: {
|
||||
|
@ -15775,7 +15776,11 @@ iron-selector:not(.narrow-layout) #main ::content [paper-drawer-toggle] {
|
|||
},
|
||||
|
||||
listeners: {
|
||||
down: '_onDown'
|
||||
down: '_updateNoink'
|
||||
},
|
||||
|
||||
attached: function() {
|
||||
this._updateNoink();
|
||||
},
|
||||
|
||||
get _parentNoink () {
|
||||
|
@ -15783,7 +15788,7 @@ iron-selector:not(.narrow-layout) #main ::content [paper-drawer-toggle] {
|
|||
return !!parent && !!parent.noink;
|
||||
},
|
||||
|
||||
_onDown: function(e) {
|
||||
_updateNoink: function() {
|
||||
this.noink = !!this.noink || !!this._parentNoink;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue