Skip to content

Commit 74425dc

Browse files
committed
fix
1 parent f280c7b commit 74425dc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

services/static-webserver/client/source/class/osparc/study/Conversations.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ qx.Class.define("osparc.study.Conversations", {
3131
},
3232

3333
statics: {
34+
popUpInWindow: function(studyData) {
35+
const conversations = new osparc.study.Conversations(studyData);
36+
const title = qx.locale.Manager.tr("Conversations");
37+
const viewWidth = 600;
38+
const viewHeight = 700;
39+
const win = osparc.ui.window.Window.popUpInWindow(conversations, title, viewWidth, viewHeight);
40+
return win;
41+
},
42+
3443
addConversation: function(studyId, name = "new 1") {
3544
const params = {
3645
url: {

0 commit comments

Comments
 (0)