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

Commit 137ac8c

Browse files
committed
0.1.77
1 parent 62d6744 commit 137ac8c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
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
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws/awsgluenotebooks-extensions",
3-
"version": "0.1.76",
3+
"version": "0.1.77",
44
"description": "A JupyterLab extension.",
55
"keywords": [
66
"amazon",

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ const activate = (
5656
const body = document.querySelector('body');
5757

5858
// Ensuring extension loads in an iframe within the AWS console context; otherwise do early return
59-
// if (window.location === window.parent.location) {
60-
// body.innerHTML = '';
61-
// return;
62-
// }
59+
if (window.location === window.parent.location) {
60+
body.innerHTML = '';
61+
return;
62+
}
6363

6464
body?.setAttribute('id', 'glue-base');
6565
body?.classList.add('aws-fake-loader');

0 commit comments

Comments
 (0)