From 7897dbd979b39470260eb19e04e8bb27fc7dba08 Mon Sep 17 00:00:00 2001 From: michaelpacer Date: Fri, 9 Oct 2015 15:21:58 -0700 Subject: [PATCH] fixed bug in javascript for shutting down notebook --- notebook/static/tree/js/notebooklist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/tree/js/notebooklist.js b/notebook/static/tree/js/notebooklist.js index f69e8b1a2..b6c5a15e8 100644 --- a/notebook/static/tree/js/notebooklist.js +++ b/notebook/static/tree/js/notebooklist.js @@ -618,7 +618,7 @@ define([ var url = utils.url_path_join( this.base_url, 'api/sessions', - encodeURIComponent(session) + encodeURIComponent(session.id) ); $.ajax(url, settings); }