+ var notifications = $('.notification');
+ var successNotification = notifications.filter('.pos');
+ var errorNotification = notifications.filter('.neg');
+ var warningNotification = notifications.filter('.warning');
+ // Notification Events
+ window.Events.listen('success', function (text) {
+ successNotification.hide();
+ successNotification.find('span').text(text);
+ setTimeout(() => {
+ successNotification.show();
+ }, 1);
+ });
+ window.Events.listen('warning', function (text) {
+ warningNotification.find('span').text(text);
+ warningNotification.show();
+ });
+ window.Events.listen('error', function (text) {
+ errorNotification.find('span').text(text);
+ errorNotification.show();
+ });
+