summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/react/components/posts_view.jsx5
-rw-r--r--web/sass-files/sass/partials/_post.scss1
2 files changed, 6 insertions, 0 deletions
diff --git a/web/react/components/posts_view.jsx b/web/react/components/posts_view.jsx
index 187cf2a71..a4dd51e19 100644
--- a/web/react/components/posts_view.jsx
+++ b/web/react/components/posts_view.jsx
@@ -94,6 +94,11 @@ export default class PostsView extends React.Component {
});
}
updateFloatingTimestamp() {
+ // skip this in non-mobile view since that's when the timestamp is visible
+ if ($(window).width() > 768) {
+ return;
+ }
+
if (this.props.postList) {
// iterate through posts starting at the bottom since users are more likely to be viewing newer posts
for (let i = 0; i < this.props.postList.order.length; i++) {
diff --git a/web/sass-files/sass/partials/_post.scss b/web/sass-files/sass/partials/_post.scss
index 9acac9532..88842c973 100644
--- a/web/sass-files/sass/partials/_post.scss
+++ b/web/sass-files/sass/partials/_post.scss
@@ -265,6 +265,7 @@ body.ios {
@include single-transition(all, 0.3s, ease);
@include translateY(-45px);
@include opacity(0);
+ display: none;
&.scrolling {
@include single-transition(all, 0.3s, ease);