6
チェック:私はボタンをクリックするとAngularUIブートストラップポップオーバーフリッカは例をplunker
<body ng-app="app">
<div class="flexbox margin-top">
<div class="flexible"></div>
<div class="flexbox">
<button class="btn btn-sm btn-success" popover-template="'template.html'" popover-placement="left">Click</button>
</div>
</div>
<script type="text/ng-template" id="template.html">
<div>
<textarea>Some text, some text, some text</textarea>
<button class="btn btn-sm">Update</button>
</div>
</script>
、ポップオーバーは、より短い時間のためにページの左上隅に現れます正しい位置に移動します。どのように私はそのちらつきを防ぐことができますか?
ありがとうございます – zarax