You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
When setting the
html
option of themessage
option totrue
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!
Line 44 in
bootstrap-notify.js
should beThanks for this excellent tool!
The text was updated successfully, but these errors were encountered: