Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at: default to All Media tab and rename Top Handles

+7 -5
+7 -5
at/index.html
··· 392 392 </header> 393 393 394 394 <div class="tabs"> 395 - <button class="tab active" data-tab="users">Top Users</button> 396 - <button class="tab" data-tab="feed">All Media</button> 395 + <button class="tab" data-tab="users">Top Handles</button> 396 + <button class="tab active" data-tab="feed">All Media</button> 397 397 </div> 398 398 399 399 <!-- Top Users --> 400 - <div class="tab-panel active" id="panel-users"> 400 + <div class="tab-panel" id="panel-users"> 401 401 <div class="search-box"> 402 402 <input type="text" id="search" placeholder="Search by handle..." autocomplete="off"> 403 403 </div> ··· 408 408 </div> 409 409 410 410 <!-- All Media Feed --> 411 - <div class="tab-panel" id="panel-feed"> 411 + <div class="tab-panel active" id="panel-feed"> 412 412 <div class="feed-filters" id="feed-filters"></div> 413 413 <div id="feed-container"> 414 414 <div class="loading"><div class="spinner"></div><p>Loading media...</p></div> ··· 784 784 } 785 785 786 786 // Init 787 - fetchUsers(); 787 + fetchUsers().finally(() => { 788 + if (!feedLoaded) loadFeed(); 789 + }); 788 790 </script> 789 791 </body> 790 792 </html>