Add profile/verification UI for room members

This commit is contained in:
miruka
2020-07-08 11:33:05 -04:00
parent 4ccb774411
commit 9b43bef935
12 changed files with 452 additions and 31 deletions

View File

@@ -49,8 +49,8 @@ QtObject {
function makePopup(urlComponent, properties={}, callback=null,
autoDestruct=true) {
makeObject(urlComponent, window, properties, (popup) => {
autoDestruct=true, parent=window) {
makeObject(urlComponent, parent, properties, (popup) => {
popup.open()
if (autoDestruct) popup.closed.connect(() => { popup.destroy() })
if (callback) callback(popup)