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 d2440fa commit 7b1f592Copy full SHA for 7b1f592
services/static-webserver/client/source/class/osparc/product/Utils.js
@@ -114,23 +114,6 @@ qx.Class.define("osparc.product.Utils", {
114
return resourceType;
115
},
116
117
- __linkExists: function(url) {
118
- return new Promise((resolve, reject) => {
119
- const reqSvg = new XMLHttpRequest();
120
- reqSvg.open("GET", url, true);
121
- reqSvg.onreadystatechange = () => {
122
- if (reqSvg.readyState === 4) {
123
- if (reqSvg.status === 404) {
124
- reject();
125
- } else {
126
- resolve();
127
- }
128
129
- };
130
- reqSvg.send();
131
- });
132
- },
133
-
134
getLogoPath: function(longLogo = true) {
135
let logosPath = null;
136
const colorManager = qx.theme.manager.Color.getInstance();
0 commit comments