mirror of
https://github.com/Redocly/redoc.git
synced 2025-04-04 17:04:22 +03:00
Sauce IE fix
This commit is contained in:
parent
1134b84f12
commit
bd4a0d136c
|
@ -14,7 +14,8 @@ let config = {
|
|||
return loadJson('https://apis-guru.github.io/api-models/api/v1/list.json').then((list) => {
|
||||
global.apisGuruList = list;
|
||||
return browser.getCapabilities().then(function (cap) {
|
||||
browser.isIE = cap.browserName === 'internet explorer';
|
||||
browser.isIE = cap.browserName === 'internet explorer'
|
||||
|| (cap.caps_ && cap.caps_.browserName === 'internet explorer')
|
||||
});
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user