2014-03-07 08:53:23 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Browser</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="editCollectionTitlesPage" data-role="page" data-theme="b" class="page libraryPage metadataEditorPage">
|
|
|
|
|
<div data-role="content editPageContent">
|
|
|
|
|
<div class="editPageSidebar">
|
|
|
|
|
<div class="libraryTree">
|
|
|
|
|
<ul>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="editPageInnerContent">
|
|
|
|
|
<h1 class="itemName editPageName"> </h1>
|
|
|
|
|
<br />
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
|
|
|
<a href="#" data-role="button" id="btnEditMetadata">Metadata</a>
|
|
|
|
|
<a id="btnEditPeople" style="display: none;" href="#" data-role="button">People</a>
|
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">Titles</a>
|
|
|
|
|
<a id="btnEditImages" href="#" data-role="button">Images</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2014-03-07 11:48:55 -07:00
|
|
|
|
<p style="margin-top: -20px;">
|
|
|
|
|
Add or remove any movies, series, albums, books or games you wish to group within this collection.
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div>
|
2014-03-07 08:53:23 -07:00
|
|
|
|
<button type="button" id="btnAddItem" data-icon="plus" data-inline="true" data-mini="true">Add</button>
|
|
|
|
|
<button type="button" id="btnRemoveItems" data-icon="delete" data-inline="true" data-mini="true" disabled="disabled">Remove</button>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="collectionItems"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div data-role="popup" data-transition="slidefade" class="popupIdentify popup" data-theme="a">
|
|
|
|
|
|
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>Add Titles
|
|
|
|
|
</h3>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
|
2014-03-07 11:48:55 -07:00
|
|
|
|
<form class="collectionItemSearchForm" style="max-width: initial;">
|
2014-03-07 08:53:23 -07:00
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label for="txtLookupName">Name:</label>
|
|
|
|
|
|
|
|
|
|
<div style="display: inline-block; width: 75%;">
|
|
|
|
|
<input type="text" id="txtLookupName" data-mini="true" required="required" />
|
|
|
|
|
</div>
|
|
|
|
|
|
2014-03-07 11:48:55 -07:00
|
|
|
|
<button type="submit" data-icon="search" data-mini="true" data-inline="true" data-iconpos="notext">
|
2014-03-07 08:53:23 -07:00
|
|
|
|
Search
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
2014-03-07 21:20:31 -07:00
|
|
|
|
<div class="collectionItemSearchResults" style="min-height:100px;">
|
2014-03-07 08:53:23 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button id="btnAddItems" type="button" data-icon="plus" data-mini="true">
|
|
|
|
|
Add
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2014-03-07 11:48:55 -07:00
|
|
|
|
$('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit);
|
2014-03-07 08:53:23 -07:00
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|