Can I declare a dismissal warning only to hide, and not remove myself from the house when I dismiss him?
<div class="alert alert-success alert-dismissible fade in" role="alert" if.bind="message">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong>Success!</strong> ${message}
</div>
The problem is that I am not using jQuery for anything now. I need aurelia to just show / hide it based on flag or existence message.
It works once, but as soon as I fire it, it is deleted from the DOM, so new messages do not appear after it.
source
share