mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update device discovery
This commit is contained in:
parent
c6b15e3001
commit
b43d55182d
9 changed files with 23 additions and 13 deletions
|
@ -15,12 +15,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.0.83",
|
||||
"_release": "1.0.83",
|
||||
"version": "1.0.84",
|
||||
"_release": "1.0.84",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.0.83",
|
||||
"commit": "2d07f1da3ed23cf12b40ed2639e42dd737eb83fd"
|
||||
"tag": "1.0.84",
|
||||
"commit": "8a8bc2b228f290e1e5616eba205bcd6f117167e2"
|
||||
},
|
||||
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "~1.0.0",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
.docspinner {
|
||||
margin-top: -4vh;
|
||||
margin-left: -4vh;
|
||||
width: 8vh;
|
||||
height: 8vh;
|
||||
width: 7vh;
|
||||
height: 7vh;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
// but not needed here since this is already on top of an existing dialog
|
||||
// but skip it in IE because it's causing the entire browser to hang
|
||||
// Also have to disable for firefox because it's causing select elements to not be clickable
|
||||
if (!browser.msie && !browser.firefox && options.modal !== false) {
|
||||
if (options.modal !== false) {
|
||||
dlg.setAttribute('modal', 'modal');
|
||||
}
|
||||
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"web-component-tester": "*"
|
||||
},
|
||||
"private": true,
|
||||
"homepage": "https://github.com/Polymer/polymer",
|
||||
"homepage": "https://github.com/polymer/polymer",
|
||||
"_release": "1.2.4",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.2.4",
|
||||
"commit": "284332a905ddd60eab11901a82ac037976175cf8"
|
||||
},
|
||||
"_source": "git://github.com/Polymer/polymer.git",
|
||||
"_source": "git://github.com/polymer/polymer.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "Polymer/polymer"
|
||||
"_originalSource": "polymer/polymer"
|
||||
}
|
|
@ -122,7 +122,7 @@
|
|||
html += '<form class="newCollectionForm" style="margin:auto;">';
|
||||
|
||||
html += '<div class="fldSelectCollection">';
|
||||
html += '<label for="selectCollectionToAddTo">' + Globalize.translate('LabelSelectCollection') + '</label>';
|
||||
html += '<label for="selectCollectionToAddTo" class="selectLabel">' + Globalize.translate('LabelSelectCollection') + '</label>';
|
||||
html += '<select id="selectCollectionToAddTo" data-mini="true"></select>';
|
||||
html += '</div>';
|
||||
|
||||
|
|
|
@ -342,6 +342,12 @@
|
|||
|
||||
var items = [];
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonEditImages'),
|
||||
id: 'images',
|
||||
ironIcon: 'photo'
|
||||
});
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonIdentify'),
|
||||
id: 'identify',
|
||||
|
@ -369,6 +375,9 @@
|
|||
case 'refresh':
|
||||
showRefreshMenu(context, button);
|
||||
break;
|
||||
case 'images':
|
||||
LibraryBrowser.editImages(currentItem.Id);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
html += '<form style="margin:auto;">';
|
||||
|
||||
html += '<div class="fldSelectPlaylist">';
|
||||
html += '<label for="selectPlaylistToAddTo">' + Globalize.translate('LabelSelectPlaylist') + '</label>';
|
||||
html += '<label for="selectPlaylistToAddTo" class="selectLabel">' + Globalize.translate('LabelSelectPlaylist') + '</label>';
|
||||
html += '<select id="selectPlaylistToAddTo" data-mini="true"></select>';
|
||||
html += '</div>';
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
<form class="subtitleSearchForm" style="max-width:none;">
|
||||
<div style="display: inline-block; width: 85%;">
|
||||
<label for="selectLanguage">${LabelLanguage}</label>
|
||||
<label for="selectLanguage" class="selectLabel">${LabelLanguage}</label>
|
||||
<select autofocus id="selectLanguage" required="required" data-mini="true"></select>
|
||||
</div>
|
||||
<button type="submit" class="clearButton btnSearchSubtitles" style="width:auto;">
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
<p class="artist"></p>
|
||||
<p class="itemGenres"></p>
|
||||
</div>
|
||||
<div class="desktopDetails" style="height:10px;"></div>
|
||||
<h2 class="tagline"></h2>
|
||||
<p id="itemBirthday"></p>
|
||||
<p id="itemBirthLocation"></p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue