We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binding to element ID is not working.
<div flash-alert="info" id="flash1" class="alert"> <span class="alert-message">{{flash.message}}</span> </div>
flash.info = 'Some info for any element ...'; flash.to("flash1").info = 'This is info only for "flash1"';
would display "Some info for any element ...".
The text was updated successfully, but these errors were encountered:
I had a similar problem. For whatever reason,
<div flash-alert="info" id="flash1" class="alert"> <span class="alert-message" ng-bind="flash.message"></span> </div>
seemed to fix it.
Sorry, something went wrong.
No branches or pull requests
Binding to element ID is not working.
would display "Some info for any element ...".
The text was updated successfully, but these errors were encountered: