From 113ccd01348ea04f22d82633af150ea7ad000fec Mon Sep 17 00:00:00 2001 From: Eric Perry Date: Wed, 3 May 2017 13:23:13 -0400 Subject: [PATCH] Open terminal tab using a hash rather than undefined for IE compatibility. --- notebook/static/tree/js/terminallist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/tree/js/terminallist.js b/notebook/static/tree/js/terminallist.js index af02dd2dd..31758c40f 100644 --- a/notebook/static/tree/js/terminallist.js +++ b/notebook/static/tree/js/terminallist.js @@ -42,7 +42,7 @@ define([ }; TerminalList.prototype.new_terminal = function () { - var w = window.open(undefined, IPython._target); + var w = window.open('#', IPython._target); var base_url = this.base_url; var settings = { type : "POST",