Skip to content
Snippets Groups Projects
Commit 67d1e560 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

moved js to static folder

parent 0264ce5b
No related branches found
No related tags found
No related merge requests found
name = 'jupyter-openbis-extension.server' name = 'jupyter-openbis-extension.server'
__author__ = 'Swen Vermeul' __author__ = 'Swen Vermeul'
__email__ = 'swen@ethz.ch' __email__ = 'swen@ethz.ch'
__version__ = '0.0.1' __version__ = '0.0.2'
def _jupyter_server_extension_paths(): def _jupyter_server_extension_paths():
return [{ return [{
...@@ -15,11 +15,11 @@ def _jupyter_nbextension_paths(): ...@@ -15,11 +15,11 @@ def _jupyter_nbextension_paths():
'label': 'Jupyter openBIS extension', 'label': 'Jupyter openBIS extension',
'section': "notebook", 'section': "notebook",
# # the path relative to the `jupyter-openbis-extension` directory containing the JavaScript # # the path relative to the `jupyter-openbis-extension` directory containing the JavaScript
'src': "nbextension", 'src': "static",
# # directory in the `nbextension/` namespace # # directory in the `nbextension/` namespace
'dest': "jupyter-openbis-extension", 'dest': "openbis",
# _also_ in the `nbextension/` namespace # _also_ in the `nbextension/` namespace
'require' : "jupyter-openbis-extension/dialog" 'require' : "openbis/dialog"
}] }]
def load_jupyter_server_extension(nbapp): def load_jupyter_server_extension(nbapp):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment