Skip to content

Commit

Permalink
#2 fixed webview panel serializer for notebook view reload on vscode …
Browse files Browse the repository at this point in the history
…restart
  • Loading branch information
RandomFractals committed May 3, 2020
1 parent 713469a commit d6e88a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function activate(context: ExtensionContext) {
const notebookViewTemplate: Template | undefined = templateManager.getTemplate('notebook.view.html');

// register map view serializer for restore on vscode restart
window.registerWebviewPanelSerializer('notebook.view',
window.registerWebviewPanelSerializer('js.notebook.view',
new NotebookViewSerializer(
'notebook.view',
extensionPath,
Expand Down Expand Up @@ -70,7 +70,7 @@ export function activate(context: ExtensionContext) {
});
context.subscriptions.push(notebookUrlCommand);

logger.info('activate(): activated! extPath:', context.extensionPath);
logger.info('activate(): activated!');
} // end of activate()

/**
Expand Down

0 comments on commit d6e88a7

Please sign in to comment.