mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Free social news network -> Free personal news reader.
This commit is contained in:
parent
0a1b638713
commit
96b31d893f
6 changed files with 10 additions and 7 deletions
|
@ -2448,6 +2448,7 @@
|
|||
only_if_hidden: options.resize
|
||||
});
|
||||
NEWSBLUR.app.story_list.show_stories_preference_in_feed_view();
|
||||
NEWSBLUR.app.story_titles.scroll_to_selected_story(this.active_story);
|
||||
|
||||
$story_pane.animate({
|
||||
'left': -1 * $feed_iframe.width()
|
||||
|
@ -2464,6 +2465,8 @@
|
|||
this.active_story.story_title_view.render_inline_story_detail();
|
||||
}
|
||||
} else if (view == 'text') {
|
||||
NEWSBLUR.app.story_titles.scroll_to_selected_story(this.active_story);
|
||||
|
||||
$story_pane.animate({
|
||||
'left': -2 * $feed_iframe.width()
|
||||
}, {
|
||||
|
|
|
@ -36,7 +36,7 @@ NEWSBLUR.Views.StoryListView = Backbone.View.extend({
|
|||
// ==========
|
||||
|
||||
render: function() {
|
||||
console.log(["Rendering story list", NEWSBLUR.assets.preference('story_layout')]);
|
||||
// console.log(["Rendering story list", NEWSBLUR.assets.preference('story_layout')]);
|
||||
if (NEWSBLUR.assets.preference('story_layout') != 'split') return;
|
||||
|
||||
var collection = this.collection;
|
||||
|
@ -75,7 +75,7 @@ NEWSBLUR.Views.StoryListView = Backbone.View.extend({
|
|||
},
|
||||
|
||||
clear: function() {
|
||||
console.log(["Clearing story list"]);
|
||||
// console.log(["Clearing story list"]);
|
||||
_.invoke(this.stories, 'destroy');
|
||||
this.$el.empty();
|
||||
},
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h5 class="NB-module-title"><span class="NB-module-title-prefix">What Is NewsBlur?</h5>
|
||||
<div class="NB-module-content">
|
||||
<ul class="NB-about-what">
|
||||
<li>NewsBlur is a social news reader that's built to simplify the process of reading news and make it easier to share your favorite stories with your friends.
|
||||
<li>NewsBlur is a personal news reader that's built to simplify the process of reading news and make it easier to share your favorite stories with your friends.
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<div class="NB-ios-main NB-android-main">
|
||||
|
||||
<div class="NB-ios-title">
|
||||
<div><a href="/">NewsBlur</a> is a free social news reader.</div>
|
||||
<div><a href="/">NewsBlur</a> is a personal news reader.</div>
|
||||
<div class="NB-ios-subtitle">Built <a href="http://github.com/samuelclay/">in the open</a> in New York and San Francisco.</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
<div class="NB-module">
|
||||
<h5 class="NB-module-title">Introduction to the API</h5>
|
||||
<div class="NB-module-content">
|
||||
<p><a href="/">NewsBlur</a> is a social news reader with intelligence. A new sound of
|
||||
an old instrument.</p>
|
||||
<p><a href="/">NewsBlur</a> is a personal news reader that brings people together to
|
||||
talk about the world. A new sound of an old instrument.</p>
|
||||
<p>NewsBlur's API allows users to retrieve their feeds, feed counts, feed icons, feed
|
||||
statistics, and individual feed stories. No API key is required, but you are required
|
||||
to authenticate before using any of the API endpoints. Please be considerate, and don't
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<div class="NB-ios-main">
|
||||
|
||||
<div class="NB-ios-title">
|
||||
<div><a href="/">NewsBlur</a> is a free social news reader.</div>
|
||||
<div><a href="/">NewsBlur</a> is a personal news reader.</div>
|
||||
<div class="NB-ios-subtitle">Built <a href="http://github.com/samuelclay/">in the open</a> in New York and San Francisco.</div>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue