Show More
@@ -29,6 +29,7 b' var IPython = (function (IPython) {' | |||
|
29 | 29 | |
|
30 | 30 | CodeCell.prototype.create_element = function () { |
|
31 | 31 | var cell = $('<div></div>').addClass('cell border-box-sizing code_cell vbox'); |
|
32 | cell.attr('tabindex','2'); | |
|
32 | 33 | var input = $('<div></div>').addClass('input hbox'); |
|
33 | 34 | input.append($('<div/>').addClass('prompt input_prompt')); |
|
34 | 35 | var input_area = $('<div/>').addClass('input_area box-flex1'); |
@@ -30,6 +30,7 b' var IPython = (function (IPython) {' | |||
|
30 | 30 | var left_panel_width = $('div#left_panel').outerWidth(); |
|
31 | 31 | var left_panel_splitter_width = $('div#left_panel_splitter').outerWidth(); |
|
32 | 32 | $('span#save_widget').css({marginLeft:left_panel_width+left_panel_splitter_width}); |
|
33 | $('input#notebook_name').attr('tabindex','1'); | |
|
33 | 34 | }; |
|
34 | 35 | |
|
35 | 36 |
@@ -27,6 +27,7 b' var IPython = (function (IPython) {' | |||
|
27 | 27 | |
|
28 | 28 | TextCell.prototype.create_element = function () { |
|
29 | 29 | var cell = $("<div>").addClass('cell text_cell border-box-sizing'); |
|
30 | cell.attr('tabindex','2'); | |
|
30 | 31 | var input_area = $('<div/>').addClass('text_cell_input'); |
|
31 | 32 | this.code_mirror = CodeMirror(input_area.get(0), { |
|
32 | 33 | indentUnit : 4, |
General Comments 0
You need to be logged in to leave comments.
Login now