Skip to content

Commit 8fa0926

Browse files
authored
Merge pull request #2472 from ericjperry/fix/IE-terminal
Open terminal tab using a hash rather than undefined for IE compatibility.
2 parents f707dde + 113ccd0 commit 8fa0926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/static/tree/js/terminallist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ define([
4242
};
4343

4444
TerminalList.prototype.new_terminal = function () {
45-
var w = window.open(undefined, IPython._target);
45+
var w = window.open('#', IPython._target);
4646
var base_url = this.base_url;
4747
var settings = {
4848
type : "POST",

0 commit comments

Comments
 (0)