When utilizing AngularJS and Bootstrap's popover, I have successfully bound to data-content
, but am encountering issues with binding to data-title
:
<li data-trigger="hover" data-placement="bottom" data-title="{{'Memory limit' | l10n}}" data-content="{{'Memory available for the execution of one testcase, measured in MiB.' | l10n}}">
<a><i class="fa fa-stack-overflow fa-lg"></i> {{task.memory_limit}} MiB</a>
</li>
This code is resulting in:
Upon inspecting dev-tools, I can see that data-title="Limite di memoria"
is present, indicating that it has worked. However, I am puzzled as to why the update is not reflecting in the actual view. Additionally, there are two new empty attributes ('data-original-title' and 'title') appearing in dev-tools which I am unfamiliar with.