mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
25 lines
862 B
HTML
25 lines
862 B
HTML
<div class="search" ng-blur="searchInProgress = false">
|
|
<input
|
|
class="search-input"
|
|
type="text"
|
|
placeholder="Search…"
|
|
ng-model="searchQuery"
|
|
pfm-popup="search-results"
|
|
/>
|
|
|
|
<div class="search-results pfm-popup" id="search-results">
|
|
<h3 class="-section-header">Matching tracks</h3>
|
|
<pfm-tracks-list tracks="tracks"></pfm-tracks-list>
|
|
|
|
<h3 class="-section-header">Matching albums</h3>
|
|
<pfm-albums-list albums="albums"></pfm-albums-list>
|
|
|
|
<h3 class="-section-header">Matching playlists</h3>
|
|
<pfm-playlists-list playlists="playlists"></pfm-playlists-list>
|
|
|
|
<h3 class="-section-header">Matching users</h3>
|
|
<ol>
|
|
<li bindonce ng-repeat="user in users track by user.id" bo-text="user.display_name"></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|