bootstrap-for-ember
bootstrap-for-ember copied to clipboard
Typo in GrowlNotification
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({