Skip to content

Commit 2fdc532

Browse files
committed
Clean up
1 parent cb8d88e commit 2fdc532

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

notebook/static/tree/js/notebooklist.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,9 @@ define([
540540
this._selection_changed();
541541
};
542542

543-
NotebookList.ipynb_extensions = ['ipynb'];
544-
545543
NotebookList.prototype._is_notebook = function(model) {
546-
return includes_extension(model.path, NotebookList.ipynb_extensions);
544+
var ipynb_extensions = ['ipynb'];
545+
return includes_extension(model.path, ipynb_extensions);
547546
};
548547

549548
NotebookList.prototype._is_editable = function(model) {

0 commit comments

Comments
 (0)