Skip to content

Commit

Permalink
Fixup nbextension
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Jun 4, 2019
1 parent 5cb2ee9 commit 87e5f87
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etc/jupyter/nbconfig/notebook.d/voila.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"load_extensions": {
"voila/nbextension": true
"voila/extension": true
}
}
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ def run(self):
data_files = [
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/voila.json']),
('etc/jupyter/jupyter_notebook_config.d', ['etc/jupyter/jupyter_notebook_config.d/voila.json']),
('etc/jupyter/nbconfig/notebook.d', ['etc/jupyter/nbconfig/notebook.d/voila.json'])
('etc/jupyter/nbconfig/notebook.d', ['etc/jupyter/nbconfig/notebook.d/voila.json']),
('share/jupyter/nbextensions/voila', ['voila/static/extension.js'])
]

# Add all the templates
Expand Down
2 changes: 1 addition & 1 deletion voila/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def _jupyter_nbextension_paths():
section="notebook",
src="static",
dest="voila",
require="voila/nbextension")]
require="voila/extension")]
File renamed without changes.

0 comments on commit 87e5f87

Please sign in to comment.