Merge branch 'stable' into develop
This commit is contained in:
commit
c663d9d55e
2 changed files with 2 additions and 0 deletions
|
|
@ -89,6 +89,7 @@ With the port to Bootstrap 3, app/views/terms/default.haml has a new structure.
|
|||
## Bug fixes
|
||||
* Skip first getting started step if it looks done already [#6456](https://github.com/diaspora/diaspora/pull/6456)
|
||||
* Normalize new followed tags and insert them alphabetically [#6454](https://github.com/diaspora/diaspora/pull/6454)
|
||||
* Add avatar fallback for notification dropdown [#6463](https://github.com/diaspora/diaspora/pull/6463)
|
||||
|
||||
## Features
|
||||
* Show spinner on initial stream load [#6384](https://github.com/diaspora/diaspora/pull/6384)
|
||||
|
|
|
|||
|
|
@ -101,6 +101,7 @@ app.views.NotificationDropdown = app.views.Base.extend({
|
|||
if($.inArray(notification, notifications) === -1){
|
||||
var node = self.dropdownNotifications.append(notification.note_html);
|
||||
$(node).find(".unread-toggle .entypo-eye").tooltip("destroy").tooltip();
|
||||
$(node).find(self.avatars.selector).error(self.avatars.fallback);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue