-
Notifications
You must be signed in to change notification settings - Fork 27
MUMUP-2345 Show Truncated RSS Feed #409
Conversation
$scope.isEmpty = true; | ||
$scope.loading = false; | ||
} else { | ||
if(!$scope.data.responseData |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whitespace: \t
is problematic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We typically use 2 spaces instead of tabs, you can upload the google styleguide to your eclipse and it will magically do that: https://github.com/google/styleguide/blob/gh-pages/eclipse-java-google-style.xml
(Potentially bad) idea: incorporate the Showing X of Y indicator into the See all button. |
@@ -8,7 +8,7 @@ | |||
</a> | |||
</li> | |||
<li ng-if='config.showShowing && config.lim && data.responseData.feed.entries.length > config.lim'> | |||
<p>Showing {{config.lim}} out of {{data.responseData.feed.entries.length}}</p> | |||
<span class='center'><p class='bold'>Showing {{config.lim}} of {{data.responseData.feed.entries.length}}</p></span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be clickable? Launch to {{portlet.url}}
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@keirserrie said no click on the "Showing X of Y"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i believe UX decided no on that.
👍 |
2 similar comments
👍 |
👍 |
MUMUP-2345 Show Truncated RSS Feed
Adding logic to show "Showing X of Y" on rss items.