Skip to content

Commit

Permalink
update changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dou Du committed May 26, 2024
1 parent d82b4af commit 875b7c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ const plugin: JupyterFrontEndPlugin<void> = {
const content = new CounterWidget(browserFactory, theme);
const widget = new MainAreaWidget<CounterWidget>({ content });

console.log(
'JupyterLab extension jupyterlab_mol_visualizer is activated!'
);

// Watch for theme changes
themeManager.themeChanged.connect((_, args) => {
const newTheme = args.newValue;
Expand All @@ -63,6 +59,10 @@ const plugin: JupyterFrontEndPlugin<void> = {
});
widget.title.label = 'MOL Visualizer';
app.shell.add(widget, 'main');

console.log(
'JupyterLab extension jupyterlab_mol_visualizer is activated!'
);
}
});

Expand Down

0 comments on commit 875b7c3

Please sign in to comment.