2014-02-07 03:21:49 +01:00
|
|
|
<div ng-show="plugin.visible">
|
2014-02-07 02:59:50 +01:00
|
|
|
<button class="btn btn-primary btn-sm pull-right"
|
2014-02-07 03:21:49 +01:00
|
|
|
ng-click="hideContent()">
|
|
|
|
Hide {{ plugin.name }}
|
2014-02-07 02:59:50 +01:00
|
|
|
</button>
|
2014-02-07 03:21:49 +01:00
|
|
|
|
2014-02-15 15:42:53 +01:00
|
|
|
<div ng-bind-html="displayedContent" bo-class="'embed_' + plugin.$$hashKey"></div>
|
2014-02-07 02:59:50 +01:00
|
|
|
</div>
|
|
|
|
|
2014-02-07 03:21:49 +01:00
|
|
|
<div ng-hide="plugin.visible">
|
2014-02-07 02:59:50 +01:00
|
|
|
<button class="btn btn-sm pull-right"
|
|
|
|
bo-class="{
|
2014-02-07 03:21:49 +01:00
|
|
|
'btn-warning': plugin.nsfw,
|
|
|
|
'btn-primary': !plugin.nsfw}"
|
|
|
|
ng-click="showContent()">
|
|
|
|
Show {{ plugin.name }}
|
2014-02-07 02:59:50 +01:00
|
|
|
</button>
|
|
|
|
</div>
|