bootstrap-for-ember icon indicating copy to clipboard operation
bootstrap-for-ember copied to clipboard

Typo in GrowlNotification

Open ejthan opened this issue 11 years ago • 0 comments

Typo in bs-growl-notifications.max.js

push: function(title, sub, type) {
      var notif;
      type = type != null ? type : type = 'info';
      notif = Bootstrap.Notification.create({
        title: title,
        sub: sub,
        type: type,
        closed: false
      });
      return this.get('notifications').pushObject(notif);
    }

notif = Bootstrap.Notification.create({

correct -> notif = Bootstrap.GrowlNotification.create({

ejthan avatar Jul 17 '14 14:07 ejthan