plugins: warn the user that content may not be safe for work
This commit is contained in:
parent
a1123ddad0
commit
3f56c80f56
2 changed files with 5 additions and 3 deletions
|
@ -129,7 +129,7 @@ $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out rel
|
|||
|
||||
</div>
|
||||
<div ng-hide="metadata.visible">
|
||||
<a ng-click="metadata.visible = true">Show additional content</a>
|
||||
<a ng-click="metadata.visible = true">Show additional content</a> <span ng-show="metadata.nsfw">(possibly nsfw)</span>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
|
|
|
@ -57,16 +57,18 @@ plugins.service('plugins', ['userPlugins', '$sce', function(userPlugins, $sce)
|
|||
var content = [];
|
||||
for (var i = 0; i < plugins.length; i++) {
|
||||
|
||||
var nsfw = false;
|
||||
var visible = true;
|
||||
|
||||
if (message.match(nsfwRegexp)) {
|
||||
var nsfw = true;
|
||||
var visible = false;
|
||||
}
|
||||
|
||||
var pluginContent = plugins[i].contentForMessage(message);
|
||||
if (pluginContent) {
|
||||
var pluginContent = {'visible': visible,
|
||||
'content': $sce.trustAsHtml(pluginContent) }
|
||||
'content': $sce.trustAsHtml(pluginContent),
|
||||
'nsfw': nsfw }
|
||||
|
||||
content.push(pluginContent);
|
||||
|
||||
|
|
Loading…
Reference in a new issue