-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify JupyterLab extension from single JS file (#778)
* first try * yay * doc update * automation test * fixed test * ts support
- Loading branch information
1 parent
b042d46
commit 41739a2
Showing
5 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
automation/src/test/resources/bucket-tests/example_lab_extension.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = [{ | ||
id: 'example_lab_extension', | ||
autoStart: true, | ||
activate: function(app) { | ||
console.log('JupyterLab extension example_lab_extension is activated!'); | ||
console.log(app.commands); | ||
} | ||
}]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters