mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Merge pull request #4969 from ErisDS/notifications-fix
Display serverside HTML notifications correctly
This commit is contained in:
commit
47c8aee507
1 changed files with 13 additions and 2 deletions
|
@ -25,8 +25,19 @@ var Notifications = Ember.ArrayProxy.extend({
|
|||
this._super(object);
|
||||
},
|
||||
handleNotification: function (message, delayed) {
|
||||
if (!message.status) {
|
||||
message.status = 'passive';
|
||||
if (typeof message.toJSON === 'function') {
|
||||
// If this is a persistent message from the server, treat it as html safe
|
||||
if (message.get('status') === 'persistent') {
|
||||
message.set('message', message.get('message').htmlSafe());
|
||||
}
|
||||
|
||||
if (!message.get('status')) {
|
||||
message.set('status', 'passive');
|
||||
}
|
||||
} else {
|
||||
if (!message.status) {
|
||||
message.status = 'passive';
|
||||
}
|
||||
}
|
||||
|
||||
if (!delayed) {
|
||||
|
|
Loading…
Add table
Reference in a new issue