summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts/notify.ts
blob: 2e6cbdeed878f7af6fc9611c5a9e5e5826e5b636 (plain)
1
2
3
4
5
6
7
8
import * as riot from 'riot';

export default message => {
	const notification = document.body.appendChild(document.createElement('mk-ui-notification'));
	(riot as any).mount(notification, {
		message: message
	});
};