Skip to content

Commit

Permalink
Change the cdn used with the SlideAtlas viewer.
Browse files Browse the repository at this point in the history
This was one of the primary causes of transient client test failures.
We should check if anyone actually uses this, and, if not, remove it
from the default viewer list.
  • Loading branch information
manthey committed Sep 13, 2023
1 parent d84017d commit 8fff3f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Features
- Added a noCache option to opening tile sources ([#1296](../../pull/1296))

### Changes
- Changed the cdn used for the SlideAtlas viewer ([#1297](../../pull/1297))

## 1.23.7

### Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import {parseQueryString, splitRoute} from '@girder/core/misc';

import ImageViewerWidget from './base';

var baseSAUrl = 'https://unpkg.com/[email protected]/dist/';
// var baseSAUrl = 'https://unpkg.com/[email protected]/dist/';
var baseSAUrl = 'https://cdn.jsdelivr.net/npm/slideatlas-viewer@4/dist/';

var SlideAtlasImageViewerWidget = ImageViewerWidget.extend({
initialize: function (settings) {
Expand Down

0 comments on commit 8fff3f9

Please sign in to comment.