summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts/password-dialog.js
blob: 2bdc93e421dfcfb7a868c899924126bdb2e44b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as riot from 'riot';

export default (title, onOk, onCancel) => {
	const dialog = document.body.appendChild(document.createElement('mk-input-dialog'));
	return riot.mount(dialog, {
		title: title,
		type: 'password',
		onOk: onOk,
		onCancel: onCancel
	});
};