1
0
Fork 0
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:
Luke Pulverenti 2016-02-17 16:24:01 -05:00
parent c6b15e3001
commit b43d55182d
9 changed files with 23 additions and 13 deletions

View file

@ -15,12 +15,12 @@
}, },
"devDependencies": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.0.83", "version": "1.0.84",
"_release": "1.0.83", "_release": "1.0.84",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.0.83", "tag": "1.0.84",
"commit": "2d07f1da3ed23cf12b40ed2639e42dd737eb83fd" "commit": "8a8bc2b228f290e1e5616eba205bcd6f117167e2"
}, },
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git", "_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.0.0", "_target": "~1.0.0",

View file

@ -1,8 +1,8 @@
.docspinner { .docspinner {
margin-top: -4vh; margin-top: -4vh;
margin-left: -4vh; margin-left: -4vh;
width: 8vh; width: 7vh;
height: 8vh; height: 7vh;
position: fixed; position: fixed;
top: 50%; top: 50%;
left: 50%; left: 50%;

View file

@ -136,7 +136,7 @@
// but not needed here since this is already on top of an existing dialog // 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 // 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 // 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'); dlg.setAttribute('modal', 'modal');
} }

View file

@ -26,14 +26,14 @@
"web-component-tester": "*" "web-component-tester": "*"
}, },
"private": true, "private": true,
"homepage": "https://github.com/Polymer/polymer", "homepage": "https://github.com/polymer/polymer",
"_release": "1.2.4", "_release": "1.2.4",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "v1.2.4", "tag": "v1.2.4",
"commit": "284332a905ddd60eab11901a82ac037976175cf8" "commit": "284332a905ddd60eab11901a82ac037976175cf8"
}, },
"_source": "git://github.com/Polymer/polymer.git", "_source": "git://github.com/polymer/polymer.git",
"_target": "^1.0.0", "_target": "^1.0.0",
"_originalSource": "Polymer/polymer" "_originalSource": "polymer/polymer"
} }

View file

@ -122,7 +122,7 @@
html += '<form class="newCollectionForm" style="margin:auto;">'; html += '<form class="newCollectionForm" style="margin:auto;">';
html += '<div class="fldSelectCollection">'; 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 += '<select id="selectCollectionToAddTo" data-mini="true"></select>';
html += '</div>'; html += '</div>';

View file

@ -342,6 +342,12 @@
var items = []; var items = [];
items.push({
name: Globalize.translate('ButtonEditImages'),
id: 'images',
ironIcon: 'photo'
});
items.push({ items.push({
name: Globalize.translate('ButtonIdentify'), name: Globalize.translate('ButtonIdentify'),
id: 'identify', id: 'identify',
@ -369,6 +375,9 @@
case 'refresh': case 'refresh':
showRefreshMenu(context, button); showRefreshMenu(context, button);
break; break;
case 'images':
LibraryBrowser.editImages(currentItem.Id);
break;
default: default:
break; break;
} }

View file

@ -130,7 +130,7 @@
html += '<form style="margin:auto;">'; html += '<form style="margin:auto;">';
html += '<div class="fldSelectPlaylist">'; 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 += '<select id="selectPlaylistToAddTo" data-mini="true"></select>';
html += '</div>'; html += '</div>';

View file

@ -9,7 +9,7 @@
<form class="subtitleSearchForm" style="max-width:none;"> <form class="subtitleSearchForm" style="max-width:none;">
<div style="display: inline-block; width: 85%;"> <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> <select autofocus id="selectLanguage" required="required" data-mini="true"></select>
</div> </div>
<button type="submit" class="clearButton btnSearchSubtitles" style="width:auto;"> <button type="submit" class="clearButton btnSearchSubtitles" style="width:auto;">

View file

@ -82,6 +82,7 @@
<p class="artist"></p> <p class="artist"></p>
<p class="itemGenres"></p> <p class="itemGenres"></p>
</div> </div>
<div class="desktopDetails" style="height:10px;"></div>
<h2 class="tagline"></h2> <h2 class="tagline"></h2>
<p id="itemBirthday"></p> <p id="itemBirthday"></p>
<p id="itemBirthLocation"></p> <p id="itemBirthLocation"></p>