pinafore/routes/_components/dialog/creators/showAccountProfileOptionsDialog.js

17 lines
510 B
JavaScript
Raw Normal View History

import AccountProfileOptionsDialog from '../components/AccountProfileOptionsDialog.html'
import { createDialogElement } from '../helpers/createDialogElement'
import { createDialogId } from '../helpers/createDialogId'
2018-04-05 04:45:19 +00:00
export function showAccountProfileOptionsDialog (account) {
let dialog = new AccountProfileOptionsDialog({
target: createDialogElement(),
data: {
id: createDialogId(),
2018-04-05 04:45:19 +00:00
label: 'Profile options dialog',
title: '',
account: account
}
})
dialog.show()
}