bootstrap-notify icon indicating copy to clipboard operation
bootstrap-notify copied to clipboard

html message option not working when set to true

Open robertkaucher opened this issue 11 years ago • 0 comments

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!

robertkaucher avatar May 24 '13 18:05 robertkaucher