##// END OF EJS Templates
fix print view...
Matthias BUSSONNIER -
Show More
@@ -47,8 +47,12 b' var IPython = (function (IPython) {'
47 this.element = cell;
47 this.element = cell;
48 this.collapse();
48 this.collapse();
49
49
50 // construct a completer
50 // construct a completer only if class exist
51 // otherwise no print view
52 if (IPython.Completer != undefined )
53 {
51 this.completer = new IPython.Completer(this);
54 this.completer = new IPython.Completer(this);
55 }
52 };
56 };
53
57
54 CodeCell.prototype.handle_codemirror_keyevent = function (editor, event) {
58 CodeCell.prototype.handle_codemirror_keyevent = function (editor, event) {
General Comments 0
You need to be logged in to leave comments. Login now