We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8d88e commit 2fdc532Copy full SHA for 2fdc532
notebook/static/tree/js/notebooklist.js
@@ -540,10 +540,9 @@ define([
540
this._selection_changed();
541
};
542
543
- NotebookList.ipynb_extensions = ['ipynb'];
544
-
545
NotebookList.prototype._is_notebook = function(model) {
546
- return includes_extension(model.path, NotebookList.ipynb_extensions);
+ var ipynb_extensions = ['ipynb'];
+ return includes_extension(model.path, ipynb_extensions);
547
548
549
NotebookList.prototype._is_editable = function(model) {
0 commit comments