bc037720bd
The recent angular update changed the format of the hash keys. They're now in the format 'object:123' (etc), which isn't a valid CSS class name any more, but we used the $$hashKey as such. I used this opportunity to introduce a bit of abstraction there as well
18 lines
542 B
HTML
18 lines
542 B
HTML
<div ng-show="plugin.visible">
|
|
<button class="btn btn-primary btn-sm pull-right"
|
|
ng-click="hideContent()">
|
|
Hide {{ ::plugin.name }}
|
|
</button>
|
|
|
|
<div ng-bind-html="displayedContent" class="embed" ng-class="::plugin.className"></div>
|
|
</div>
|
|
|
|
<div ng-hide="plugin.visible">
|
|
<button class="btn btn-sm pull-right"
|
|
ng-class="::{
|
|
'btn-warning': plugin.nsfw,
|
|
'btn-primary': !plugin.nsfw}"
|
|
ng-click="showContent()">
|
|
Show {{ ::plugin.name }}
|
|
</button>
|
|
</div>
|