mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Adjusting size of side options.
This commit is contained in:
parent
83d280d9c1
commit
cf90435714
2 changed files with 4 additions and 4 deletions
|
@ -4442,7 +4442,7 @@ body {
|
|||
transition: width 0.12s ease-out;
|
||||
}
|
||||
.NB-story-starred .NB-feed-story-sideoptions-container {
|
||||
width: 194px;
|
||||
width: 164px;
|
||||
}
|
||||
|
||||
.NB-narrow-content .NB-feed-story-sideoptions-container {
|
||||
|
|
|
@ -109,9 +109,9 @@ NEWSBLUR.Models.Story = Backbone.Model.extend({
|
|||
return content;
|
||||
},
|
||||
|
||||
story_authors: function() {
|
||||
return this.get('story_authors').replace(/</g, '<')
|
||||
.replace(/>/g, '>');
|
||||
story_authors: function () {
|
||||
let authors = this.get('story_authors') || "";
|
||||
return authors.replace(/</g, '<').replace(/>/g, '>');
|
||||
},
|
||||
|
||||
user_highlights: function() {
|
||||
|
|
Loading…
Add table
Reference in a new issue