Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Commit b4b2c40

Browse files
authored
Merge pull request #452 from TeamCodeStream/develop
15.6 backend patch
2 parents b305668 + 2d7a2df commit b4b2c40

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

api_server/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Change Log
22

3-
## [15.6.0] - 2024-6-3
3+
## [15.6.0] - 2024-6-6
44

55
### Changed
66

77
- Backend changes to support refactor of errors integration
88

9+
### Fixed
10+
11+
- Fixes an issue with opening in IDE from New Relic using Firefox
12+
913
## [15.5.0] - 2024-4-29
1014

1115
### Changed

api_server/modules/apiweb/templates/partial_launcher_detailed.hbs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@
262262
successCb && successCb();
263263
}
264264
265+
function unsupportedCallback() {
266+
unsupportedCb && unsupportedCb();
267+
}
268+
265269
if (navigator.msLaunchUri) { //for IE and Edge in Win 8 and Win 10
266270
openUriWithMsLaunchUri(uri, failCb, successCb);
267271
} else {
@@ -276,8 +280,9 @@
276280
} else if (browser.isSafari) {
277281
openUriWithHiddenFrame(uri, failCallback, successCallback);
278282
} else {
279-
unsupportedCb();
280-
//not supported, implement please
283+
unsupportedCallback();
284+
// this works for most common browsers, so we try it if detection fails
285+
openUriWithTimeoutHack(uri, failCallback, successCallback);
281286
}
282287
}
283288
}

0 commit comments

Comments
 (0)