mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update dialogs
This commit is contained in:
parent
7bc57e287a
commit
f17942c1cd
19 changed files with 68 additions and 55 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.234",
|
||||
"_release": "1.4.234",
|
||||
"version": "1.4.235",
|
||||
"_release": "1.4.235",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.234",
|
||||
"commit": "6e3e3425ec8e10a968bc92be565f62166da4ae18"
|
||||
"tag": "1.4.235",
|
||||
"commit": "228f893d3748b11d61946cf48fc78a018599be93"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -285,9 +285,12 @@ define(['browser'], function (browser) {
|
|||
hlsVideoAudioCodecs.push('mp3');
|
||||
}
|
||||
|
||||
if (browser.tizen) {
|
||||
videoAudioCodecs.push('dca');
|
||||
videoAudioCodecs.push('dts');
|
||||
}
|
||||
|
||||
if (browser.edgeUwp) {
|
||||
//videoAudioCodecs.push('dca');
|
||||
//videoAudioCodecs.push('dts');
|
||||
//videoAudioCodecs.push('truehd');
|
||||
}
|
||||
|
||||
|
@ -484,7 +487,7 @@ define(['browser'], function (browser) {
|
|||
}]
|
||||
});
|
||||
|
||||
var videoAudioChannels = '6';
|
||||
var videoAudioChannels = browser.tizen ? '8' : '6';
|
||||
|
||||
// Handle he-aac not supported
|
||||
if (!videoTestElement.canPlayType('video/mp4; codecs="avc1.640029, mp4a.40.5"').replace(/no/, '')) {
|
||||
|
|
|
@ -1247,7 +1247,9 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
|||
actionAttribute = '';
|
||||
}
|
||||
|
||||
className += ' card-withuserdata';
|
||||
if (item.Type != 'MusicAlbum' && item.Type != 'MusicArtist' && item.Type != 'Audio') {
|
||||
className += ' card-withuserdata';
|
||||
}
|
||||
|
||||
var positionTicksData = item.UserData && item.UserData.PlaybackPositionTicks ? (' data-positionticks="' + item.UserData.PlaybackPositionTicks + '"') : '';
|
||||
var collectionIdData = options.collectionId ? (' data-collectionid="' + options.collectionId + '"') : '';
|
||||
|
@ -1346,13 +1348,13 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
|||
return indicatorsElem;
|
||||
}
|
||||
|
||||
indicatorsElem = card.querySelector('.indicators');
|
||||
indicatorsElem = card.querySelector('.cardIndicators');
|
||||
|
||||
if (!indicatorsElem) {
|
||||
|
||||
var cardImageContainer = card.querySelector('.cardImageContainer');
|
||||
indicatorsElem = document.createElement('div');
|
||||
indicatorsElem.classList.add('indicators');
|
||||
indicatorsElem.classList.add('cardIndicators');
|
||||
cardImageContainer.appendChild(indicatorsElem);
|
||||
}
|
||||
|
||||
|
|
|
@ -79,7 +79,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
activeElement.focus();
|
||||
if (layoutManager.tv) {
|
||||
activeElement.focus();
|
||||
}
|
||||
|
||||
if (dlg.getAttribute('data-removeonclose') != 'false') {
|
||||
removeCenterFocus(dlg);
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
border-radius: 2px;
|
||||
margin-right: .5em;
|
||||
color: #fff;
|
||||
font-size: 80%;
|
||||
font-size: 74%;
|
||||
padding: .2em .25em;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -32,14 +32,14 @@
|
|||
"web-component-tester": "^4.0.0",
|
||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||
},
|
||||
"homepage": "https://github.com/polymerelements/iron-icon",
|
||||
"homepage": "https://github.com/PolymerElements/iron-icon",
|
||||
"_release": "1.0.10",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.0.10",
|
||||
"commit": "f4e146da4982ff96bb25db85290c09e8de4ec734"
|
||||
},
|
||||
"_source": "git://github.com/polymerelements/iron-icon.git",
|
||||
"_source": "git://github.com/PolymerElements/iron-icon.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "polymerelements/iron-icon"
|
||||
"_originalSource": "PolymerElements/iron-icon"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue