mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FEATURE: display reply to post on mobile
This commit is contained in:
parent
0855fe5438
commit
b62aaf5a53
app/assets
@ -11,9 +11,9 @@
|
|||||||
{{#if loadingReplyHistory}}
|
{{#if loadingReplyHistory}}
|
||||||
{{i18n loading}}
|
{{i18n loading}}
|
||||||
{{else}}
|
{{else}}
|
||||||
<i class="fa fa-mail-forward"></i>
|
<i class="fa fa-mail-forward"></i>
|
||||||
{{avatar reply_to_user imageSize="tiny"}}
|
{{avatar reply_to_user imageSize="tiny"}}
|
||||||
{{reply_to_user.username}}
|
<span>{{reply_to_user.username}}</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</a>
|
</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -185,6 +185,11 @@ Discourse.PostView = Discourse.GroupedView.extend(Ember.Evented, {
|
|||||||
topicController = this.get('controller'),
|
topicController = this.get('controller'),
|
||||||
origScrollTop = $(window).scrollTop();
|
origScrollTop = $(window).scrollTop();
|
||||||
|
|
||||||
|
if (Discourse.Mobile.mobileView) {
|
||||||
|
Discourse.URL.routeTo(this.get('post.topic').urlForPostNumber(this.get('post.reply_to_post_number')));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (replyHistory.length > 0) {
|
if (replyHistory.length > 0) {
|
||||||
var origHeight = this.$('.embedded-posts.top').height();
|
var origHeight = this.$('.embedded-posts.top').height();
|
||||||
|
@ -121,7 +121,11 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a.reply-to-tab {
|
a.reply-to-tab {
|
||||||
display: none;
|
position: absolute;
|
||||||
|
z-index: 400;
|
||||||
|
right: 80px;
|
||||||
|
color: scale-color($primary, $lightness: 50%);
|
||||||
|
span { display: none; }
|
||||||
}
|
}
|
||||||
|
|
||||||
a.star {
|
a.star {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user