Fixing auto-selection of feeds in feed chooser.

This commit is contained in:
Samuel Clay 2013-09-06 12:56:18 -07:00
parent dec22ac776
commit a21fdf39f8

View file

@ -19,7 +19,7 @@ NEWSBLUR.ReaderFeedchooser.prototype = {
_.defer(_.bind(function() { this.open_modal(); }, this));
if (!this.options.premium_only) {
this.find_feeds_in_feed_list();
this.initial_load_feeds(true);
this.initial_load_feeds();
}
this.choose_dollar_amount(2);
@ -337,7 +337,7 @@ NEWSBLUR.ReaderFeedchooser.prototype = {
var self = this;
var $feeds = $('.feed', this.$modal);
var feeds = this.model.get_feeds();
if (!feeds.size()) {
_.defer(_.bind(function() {
var $info = $('.NB-feedchooser-info', this.$modal);