Skip to content

Commit 640a62b

Browse files
Data Explorer Accessiblity (microsoft#6704)
1 parent c645e38 commit 640a62b

11 files changed

Lines changed: 1962 additions & 118 deletions

File tree

news/1 Enhancements/6019.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Improved keyboard and screen reader support for the data explorer

package-lock.json

Lines changed: 25 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2414,6 +2414,7 @@
24142414
"@types/html-webpack-plugin": "^3.2.0",
24152415
"@types/iconv-lite": "^0.0.1",
24162416
"@types/jsdom": "^11.12.0",
2417+
"@types/jquery": "^1.10.35",
24172418
"@types/loader-utils": "^1.1.3",
24182419
"@types/lodash": "^4.14.104",
24192420
"@types/md5": "^2.1.32",
@@ -2431,7 +2432,6 @@
24312432
"@types/semver": "^5.5.0",
24322433
"@types/shortid": "^0.0.29",
24332434
"@types/sinon": "^7.0.13",
2434-
"@types/slickgrid": "^2.1.27",
24352435
"@types/stack-trace": "0.0.29",
24362436
"@types/strip-json-comments": "0.0.30",
24372437
"@types/temp": "^0.8.32",

src/client/datascience/jupyter/jupyterWebSocket.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ export function createJupyterWebSocket(cookieString?: string, allowUnauthorized?
1111
let co: WebSocketWS.ClientOptions = {};
1212

1313
if (allowUnauthorized) {
14-
co = {...co, rejectUnauthorized: false};
14+
co = { ...co, rejectUnauthorized: false };
1515
}
1616

1717
if (cookieString) {
18-
co = {...co, headers: {
19-
Cookie: cookieString
20-
}};
18+
co = {
19+
...co, headers: {
20+
Cookie: cookieString
21+
}
22+
};
2123
}
2224

2325
super(url, protocols, co);

0 commit comments

Comments
 (0)