mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
75 lines
No EOL
2.8 KiB
JavaScript
75 lines
No EOL
2.8 KiB
JavaScript
NEWSBLUR.ReaderNewsletters = function(options) {
|
|
var defaults = {
|
|
'width': 800
|
|
};
|
|
|
|
this.options = $.extend({}, defaults, options);
|
|
this.model = NEWSBLUR.assets;
|
|
this.runner();
|
|
};
|
|
|
|
NEWSBLUR.ReaderNewsletters.prototype = new NEWSBLUR.Modal;
|
|
NEWSBLUR.ReaderNewsletters.prototype.constructor = NEWSBLUR.ReaderNewsletters;
|
|
|
|
_.extend(NEWSBLUR.ReaderNewsletters.prototype, {
|
|
|
|
runner: function() {
|
|
this.make_modal();
|
|
this.open_modal(_.bind(function() {
|
|
$('.NB-newsletters-email').click();
|
|
}, this));
|
|
|
|
this.$modal.bind('click', $.rescope(this.handle_click, this));
|
|
},
|
|
|
|
make_modal: function() {
|
|
var self = this;
|
|
var email = NEWSBLUR.Globals.username + "-" + NEWSBLUR.Globals.secret_token + "@newsletters.newsblur.com";
|
|
|
|
this.$modal = $.make('div', { className: 'NB-modal-newsletters NB-modal' }, [
|
|
$.make('h2', { className: 'NB-modal-title' }, [
|
|
$.make('div', { className: 'NB-icon' }),
|
|
'Email Newsletters',
|
|
$.make('div', { className: 'NB-icon-dropdown' })
|
|
]),
|
|
|
|
$.make('fieldset', [
|
|
$.make('legend', 'Forwarding email address')
|
|
]),
|
|
$.make('div', { className: 'NB-newsletters-group' }, [
|
|
$.make('input', { type: 'text', value: email, className: 'NB-newsletters-email' })
|
|
]),
|
|
|
|
$.make('fieldset', [
|
|
$.make('legend', 'Setup instructions')
|
|
]),
|
|
$.make('div', { className: 'NB-newsletters-group' }, [
|
|
$.make('p', 'To read your email newsletters in NewsBlur, forward your newsletters to your custom email address shown above.'),
|
|
$.make('p', [
|
|
'In Gmail, go to ',
|
|
$.make('b', 'Settings > Forwarding'),
|
|
' and click on ',
|
|
$.make('b', 'Add a forwarding address'),
|
|
'. Add your custom NewsBlur email address.'
|
|
]),
|
|
$.make('p', 'Gmail will walk you through confirming the email address. You\'ll want to come back to NewsBlur and look for the confirmation email under the "Newsletters" folder.'),
|
|
$.make('p', 'Next, create a filter with all of your newsletters so that they forward to the custom address on NewsBlur.'),
|
|
$.make('img', { src: NEWSBLUR.Globals.MEDIA_URL + "/img/reader/newsletters_gmail.png", className: 'NB-newsletters-gmail' })
|
|
])
|
|
]);
|
|
},
|
|
|
|
// ===========
|
|
// = Actions =
|
|
// ===========
|
|
|
|
handle_click: function(elem, e) {
|
|
var self = this;
|
|
|
|
$.targetIs(e, { tagSelector: '.NB-newsletters-email' }, function($t, $p) {
|
|
e.preventDefault();
|
|
$t.select();
|
|
});
|
|
}
|
|
|
|
}); |