mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Updated About section to include a very important message about Why I Built NewsBlur.
This commit is contained in:
parent
d0d84465d9
commit
8860c94480
3 changed files with 29 additions and 3 deletions
|
@ -2922,6 +2922,9 @@ background: transparent;
|
|||
.NB-modal-about ul.NB-about-who li {
|
||||
background: transparent url('../img/icons/silk/bullet_green.png') no-repeat 0 0;
|
||||
}
|
||||
.NB-modal-about ul.NB-about-why li {
|
||||
background: transparent url('../img/icons/silk/bullet_orange.png') no-repeat 0 0;
|
||||
}
|
||||
|
||||
.NB-modal-about .NB-link-about-faq {
|
||||
float: right;
|
||||
|
|
|
@ -117,6 +117,26 @@ NEWSBLUR.About.prototype = {
|
|||
])
|
||||
])
|
||||
])
|
||||
]),
|
||||
$.make('div', { className: 'NB-fieldset NB-modal-submit' }, [
|
||||
$.make('h5', [
|
||||
$.make('div', { className: 'NB-exception-option-meta' }),
|
||||
$.make('span', { className: 'NB-exception-option-option' }, 'Why:'),
|
||||
'What\'s the point?'
|
||||
]),
|
||||
$.make('div', { className: 'NB-fieldset-fields' }, [
|
||||
$.make('ul', { className: 'NB-about-why' }, [
|
||||
$.make('li', [
|
||||
'To learn how to build and scale the entire web stack: front-end JavaScript, HTML5 layout, back-end view processing, large dataset schema migrations, relational and non-relational database clusters across multiple servers, and getting multiple machines to talk to each other.'
|
||||
]),
|
||||
$.make('li', [
|
||||
'All of this just to prove that I could do it.'
|
||||
]),
|
||||
$.make('li', [
|
||||
'But most importantly, to meet future co-founders.'
|
||||
])
|
||||
])
|
||||
])
|
||||
])
|
||||
]);
|
||||
},
|
||||
|
|
|
@ -1416,6 +1416,7 @@
|
|||
feed_id = feed_id || this.active_feed;
|
||||
var feed = this.model.get_feed(feed_id);
|
||||
var $feed = this.find_feed_in_feed_list(feed_id);
|
||||
var $feed_counts = $('.feed_counts_floater', $feed);
|
||||
var $content_pane = this.$s.$content_pane;
|
||||
var $story_titles = this.$s.$story_titles;
|
||||
|
||||
|
@ -1436,6 +1437,9 @@
|
|||
$feed.removeClass('unread_neutral');
|
||||
$feed.removeClass('unread_positive');
|
||||
$feed.removeClass('unread_negative');
|
||||
$feed_counts.removeClass('unread_neutral');
|
||||
$feed_counts.removeClass('unread_positive');
|
||||
$feed_counts.removeClass('unread_negative');
|
||||
|
||||
this.model.mark_feed_as_read(feed_id, callback);
|
||||
},
|
||||
|
@ -2217,7 +2221,7 @@
|
|||
}
|
||||
} else if (type == 'folder') {
|
||||
$manage_menu = $.make('ul', { className: 'NB-menu-manage' }, [
|
||||
(!inverse && $.make('li', { className: 'NB-menu-separator-inverse' })),
|
||||
$.make('li', { className: 'NB-menu-separator-inverse' }),
|
||||
$.make('li', { className: 'NB-menu-manage-feed NB-menu-manage-feed-mark-read' }, [
|
||||
$.make('div', { className: 'NB-menu-manage-image' }),
|
||||
$.make('div', { className: 'NB-menu-manage-title' }, 'Mark folder as read')
|
||||
|
@ -2230,8 +2234,7 @@
|
|||
$.make('li', { className: 'NB-menu-manage-feed NB-menu-manage-feed-delete-confirm' }, [
|
||||
$.make('div', { className: 'NB-menu-manage-image' }),
|
||||
$.make('div', { className: 'NB-menu-manage-title' }, 'Really delete?')
|
||||
]),
|
||||
(inverse && $.make('li', { className: 'NB-menu-separator-inverse' }))
|
||||
])
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue