mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-08-04 22:51:03 +02:00
feat(users): add configure setting switch to show or hide signature info
This commit is contained in:
3
config/env/torrents.js
vendored
3
config/env/torrents.js
vendored
@@ -716,7 +716,8 @@ module.exports = {
|
||||
{name: 'DISCUSS', value: 'discuss', index: 1},
|
||||
{name: 'BUSINESS', value: 'business', index: 2}
|
||||
],
|
||||
showThumbsUpUserList: true
|
||||
showThumbsUpUserList: true,
|
||||
showUserSignature: true
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
@@ -477,6 +477,7 @@
|
||||
}
|
||||
.reply-comment-signature {
|
||||
position: relative;
|
||||
margin-top: 10px;
|
||||
padding: 10px 15px;
|
||||
font-size: 0.9em;
|
||||
color: #586069;
|
||||
|
||||
@@ -145,7 +145,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="reply-comment-signature" ng-if="vm.topic.user.signature">
|
||||
<div class="reply-comment-signature" ng-if="vm.topic.user.signature && vm.forumsConfig.showUserSignature">
|
||||
<div ng-bind-html="vm.getUserSignatureMarked(vm.topic.user);"></div>
|
||||
<span class="signature-tag" translate="FORUMS.SIGNATURE_TAG"></span>
|
||||
</div>
|
||||
@@ -224,7 +224,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="reply-comment-signature" ng-if="rep.user.signature">
|
||||
<div class="reply-comment-signature" ng-if="rep.user.signature && vm.forumsConfig.showUserSignature">
|
||||
<div ng-bind-html="vm.getUserSignatureMarked(rep.user);"></div>
|
||||
<span class="signature-tag" translate="FORUMS.SIGNATURE_TAG"></span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user