Messenger supports hideOnNavigate now

New: After adding a series you will be able to navigate to it via the UI notification
This commit is contained in:
Mark McDowall 2014-04-04 10:58:21 -07:00
parent 0f9360bccb
commit b65f2e7845
2 changed files with 29 additions and 4 deletions

View file

@ -23,13 +23,16 @@ define(function () {
}
}
options.hideOnNavigate = options.hideOnNavigate || false;
return window.Messenger().post({
message : options.message,
type : options.type,
showCloseButton: true,
hideAfter : options.hideAfter,
id : options.id,
actions : options.actions
actions : options.actions,
hideOnNavigate : options.hideOnNavigate
});
},