我正在一个项目中工作,我们正在使用Angular和ng-bootstrap以及其他各种插件,它非常棒。
但是当在ng-template中使用ng-repeat来获取某些popover内容时,popover的位置会变得很糟糕。
<script id="broken.html" type="text/ng-template">
<div>
<table class="table table-condensed table-popover">
<tbody ng-repeat="a in test">
<tr>
<th>test</th>
<td>aaa</td>
</tr>
</tbody>
</table>
</div>
</script>
&#34;破碎&#34;使用ng-repeat的按钮会弹出一个太远的弹出窗口。而#34; Works&#34;具有硬编码表的按钮按预期工作。
有没有人知道如何解决这个问题?
最好的问候,Fredrik