pinafore/routes/_components/dialog/showEmojiDialog.js

14 lines
295 B
JavaScript
Raw Normal View History

2018-02-28 07:18:07 +00:00
import EmojiDialog from './EmojiDialog.html'
2018-03-03 22:51:48 +00:00
export function showEmojiDialog (realm) {
2018-02-28 07:18:07 +00:00
let emojiDialog = new EmojiDialog({
target: document.getElementById('modal-dialog'),
data: {
label: 'Emoji dialog',
2018-03-03 22:51:48 +00:00
title: 'Custom emoji',
realm
2018-02-28 07:18:07 +00:00
}
})
emojiDialog.show()
}