We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf0f3d commit 67af6b7Copy full SHA for 67af6b7
services/static-webserver/client/source/class/osparc/support/SupportCenter.js
@@ -43,12 +43,13 @@ qx.Class.define("osparc.support.SupportCenter", {
43
44
statics: {
45
WINDOW_WIDTH: 430,
46
+ WINDOW_HEIGHT: 700,
47
REQUEST_CALL_MESSAGE: "Dear Support,\nI would like to make an appointment for a support call.",
48
49
getMaxHeight: function() {
- // height: max 80% of screen, or 600px
50
+ // height: max 80% of screen, or WINDOW_HEIGHTpx
51
const clientHeight = document.documentElement.clientHeight;
- return Math.min(600, parseInt(clientHeight * 0.8));
52
+ return Math.min(osparc.support.SupportCenter.WINDOW_HEIGHT, parseInt(clientHeight * 0.8));
53
},
54
55
openWindow: function() {
0 commit comments