mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing switch feeds with keyboard. It was accidentally erroring on NB-Empty feeds, used for drag-and-drop into empty folders. Also skipping hidden feeds.
This commit is contained in:
parent
582b302bd1
commit
f72aa14b5c
3 changed files with 9 additions and 4 deletions
|
@ -1706,6 +1706,11 @@ a.NB-splash-link:hover {
|
|||
color: #A85B40;
|
||||
}
|
||||
|
||||
#NB-splash .NB-splash-links .NB-splash-link-twitter {
|
||||
width: 121px;
|
||||
float: left;
|
||||
margin-top: 0;
|
||||
}
|
||||
.NB-splash-info {
|
||||
background-color: white;
|
||||
z-index: 1;
|
||||
|
|
|
@ -480,10 +480,9 @@
|
|||
var $current_feed = $current_feed || $('.selected', $feed_list);
|
||||
var $next_feed,
|
||||
scroll;
|
||||
var $feeds = $('.feed', $feed_list);
|
||||
|
||||
var $feeds = $('.feed:visible:not(.NB-empty)', $feed_list);
|
||||
if (!$current_feed.length) {
|
||||
$current_feed = $('.feed:first', $feed_list);
|
||||
$current_feed = $('.feed:first:visible:not(.NB-empty)', $feed_list);
|
||||
$next_feed = $current_feed;
|
||||
} else {
|
||||
$feeds.each(function(i) {
|
||||
|
|
|
@ -304,7 +304,8 @@ $(document).ready(function() {
|
|||
<ul class="NB-splash-links">
|
||||
<li class="NB-splash-link NB-splash-meta-faq"><a href="#faq">FAQ</a></li>
|
||||
<li class="NB-splash-link NB-splash-meta-about"><a href="#about">About</a></li>
|
||||
<li class="NB-splash-link"><a href="http://twitter.com/samuelclay">Twitter</a></li>
|
||||
<li class="NB-splash-link NB-splash-link-twitter"><a href="http://twitter.com/samuelclay">@samuelclay</a></li>
|
||||
<li class="NB-splash-link NB-splash-link-twitter"><a href="http://twitter.com/newsblur">@newsblur</a></li>
|
||||
</ul>
|
||||
<img class="NB-splash-title" src="{{ MEDIA_URL }}/img/reader/newsblur_logo.png" />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue