mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
test kernel for undefined rather than off
This commit is contained in:
parent
fc59441dda
commit
34deb138c8
@ -597,8 +597,6 @@ class NotebookRootHandler(AuthenticatedHandler):
|
||||
kid = km.kernel_for_notebook(nid)
|
||||
if kid is not None:
|
||||
f['kernel_status']=kid
|
||||
else:
|
||||
f['kernel_status']='off'
|
||||
self.finish(jsonapi.dumps(files))
|
||||
|
||||
@web.authenticated
|
||||
|
@ -113,7 +113,7 @@ var IPython = (function (IPython) {
|
||||
this.add_link(notebook_id, nbname, item);
|
||||
if (!IPython.read_only){
|
||||
// hide delete buttons when readonly
|
||||
if(kernel == 'off'){
|
||||
if(kernel == undefined){
|
||||
this.add_delete_button(item);
|
||||
} else {
|
||||
this.add_shutdown_button(item,kernel);
|
||||
@ -192,7 +192,6 @@ var IPython = (function (IPython) {
|
||||
type : "DELETE",
|
||||
dataType : "json",
|
||||
success : function (data, status, xhr) {
|
||||
console.log('kernel killed');
|
||||
that.load_list();
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user