mirror of
https://github.com/discourse/discourse.git
synced 2025-05-17 06:43:06 +08:00
STYLE: cleaner targetting in components
This commit is contained in:
parent
12b72762da
commit
c7c1c937af
@ -10,6 +10,7 @@ Discourse.PrivateMessageMapComponent = Ember.Component.extend({
|
||||
templateName: 'components/private-message-map',
|
||||
tagName: 'section',
|
||||
classNames: ['information'],
|
||||
details: Em.computed.alias('topic.details'),
|
||||
|
||||
actions: {
|
||||
removeAllowedUser: function(user) {
|
||||
|
@ -1,11 +1,11 @@
|
||||
<h3><i class='fa fa-envelope'></i> {{i18n private_message_info.title}}</h3>
|
||||
<div class='participants clearfix'>
|
||||
{{#groupedEach topic.details.allowed_groups}}
|
||||
{{#groupedEach view.details.allowed_groups}}
|
||||
<div class='user group'>
|
||||
#{{unbound name}}
|
||||
</div>
|
||||
{{/groupedEach}}
|
||||
{{#groupedEach topic.details.allowed_users}}
|
||||
{{#groupedEach view.details.allowed_users}}
|
||||
<div class='user'>
|
||||
{{#link-to 'user' this}}
|
||||
{{avatar this imageSize="small"}}
|
||||
@ -13,13 +13,13 @@
|
||||
{{#link-to 'user' this}}
|
||||
{{unbound username}}
|
||||
{{/link-to}}
|
||||
{{#if topic.details.can_remove_allowed_users}}
|
||||
{{#if view.details.can_remove_allowed_users}}
|
||||
<a class='remove-invited' {{action removeAllowedUser this}}><i class="fa fa-times"></i></a>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/groupedEach}}
|
||||
</div>
|
||||
{{#if topic.details.can_invite_to}}
|
||||
{{#if view.details.can_invite_to}}
|
||||
<div class='controls'>
|
||||
<button class='btn' {{action showPrivateInvite}}>{{i18n private_message_info.invite}}</button>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user