diff --git a/notebook/static/notebook/js/menubar.js b/notebook/static/notebook/js/menubar.js index ddefd0cd1..cd75b36c8 100644 --- a/notebook/static/notebook/js/menubar.js +++ b/notebook/static/notebook/js/menubar.js @@ -193,6 +193,10 @@ define([ that._nbconvert('html', true); }); + this.element.find('#download_slides').click(function () { + that._nbconvert('slides', true); + }); + this.element.find('#download_markdown').click(function () { that._nbconvert('markdown', true); }); diff --git a/notebook/templates/notebook.html b/notebook/templates/notebook.html index 647b92850..eb2f758d0 100644 --- a/notebook/templates/notebook.html +++ b/notebook/templates/notebook.html @@ -109,6 +109,7 @@ data-notebook-path="{{notebook_path | urlencode}}"