mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Merge branch 'master' into circular
* master: Fixing issue where user agent doesn't exist. Change crossover to narrow view from 700 to 720px. Conflicts: media/js/newsblur/reader/reader.js
This commit is contained in:
commit
191738b621
2 changed files with 2 additions and 2 deletions
|
@ -1246,7 +1246,7 @@ def shared_stories_rss_feed(request, user_id, username):
|
|||
|
||||
logging.user(request, "~FBGenerating ~SB%s~SN's RSS feed: ~FM%s" % (
|
||||
user.username,
|
||||
request.META['HTTP_USER_AGENT'][:24]
|
||||
request.META.get('HTTP_USER_AGENT', "")[:24]
|
||||
))
|
||||
return HttpResponse(rss.writeString('utf-8'), content_type='application/rss+xml')
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
}
|
||||
|
||||
if ((north && north.width() < 600) ||
|
||||
(center && center.width() < 700)) {
|
||||
(center && center.width() < 720)) {
|
||||
this.$s.$feed_view.addClass('NB-feed-story-view-narrow');
|
||||
this.$s.$story_titles.addClass('NB-feed-story-view-narrow');
|
||||
this.$s.$text_view.addClass('NB-feed-story-view-narrow');
|
||||
|
|
Loading…
Add table
Reference in a new issue