diff --git a/dist/notify.js b/dist/notify.js index 3971640..bf91bf8 100644 --- a/dist/notify.js +++ b/dist/notify.js @@ -360,7 +360,11 @@ anchor.css(css).addClass(pluginClassName + "-corner"); $("body").append(anchor); } - return anchor.prepend(this.wrapper); + if (this.options.order && this.options.order === "fifo") { + return anchor.append(this.wrapper); + } else { + return anchor.prepend(this.wrapper); + } }; Notification.prototype.setElementPosition = function() {