Files
talk/client/coral-framework/services/notification.js
T
2017-08-23 03:16:19 +07:00

14 lines
303 B
JavaScript

export function createNotificationService(pym) {
return {
success(msg) {
pym.sendMessage('coral-alert', `success|${msg}`);
},
error(msg) {
pym.sendMessage('coral-alert', `error|${msg}`);
},
info(msg) {
pym.sendMessage('coral-alert', `info|${msg}`);
},
};
}