bootstrap-notify
bootstrap-notify copied to clipboard
html message option not working when set to true
When setting the html
option of the message
option to true
message: {html: true, text: 'Aw yeah, <strong>It works!</strong>' }
the word true is displayed as the messages text rather than
Aw yeah, It works!
if (this.options.message.html)
this.$note.html(this.options.message.html);
else if (this.options.message.text)
this.$note.text(this.options.message.text);
Line 44 in bootstrap-notify.js
should be
this.$note.html(this.options.message.text);
Thanks for this excellent tool!