Show More
@@ -65,7 +65,7 b' var IPython = (function (IPython) {' | |||
|
65 | 65 | var i, half, n; |
|
66 | 66 | |
|
67 | 67 | // Command mode |
|
68 |
var cmd_div = $('<div/>').append($('<h4>Command Mode (press |
|
|
68 | var cmd_div = $('<div/>').append($('<h4>Command Mode (press <tt>esc</tt> to enable)</h4>')); | |
|
69 | 69 | var cmd_sub_div = $('<div/>').addClass('hbox'); |
|
70 | 70 | var cmd_col1 = $('<div/>').addClass('box-flex0'); |
|
71 | 71 | var cmd_col2 = $('<div/>').addClass('box-flex0'); |
@@ -98,7 +98,7 b' var IPython = (function (IPython) {' | |||
|
98 | 98 | var i, half, n; |
|
99 | 99 | |
|
100 | 100 | // Edit mode |
|
101 |
var edit_div = $('<div/>').append($('<h4>Edit Mode (press |
|
|
101 | var edit_div = $('<div/>').append($('<h4>Edit Mode (press <tt>enter</tt> to enable)</h4>')); | |
|
102 | 102 | var edit_sub_div = $('<div/>').addClass('hbox'); |
|
103 | 103 | var edit_col1 = $('<div/>').addClass('box-flex0'); |
|
104 | 104 | var edit_col2 = $('<div/>').addClass('box-flex0'); |
@@ -56,7 +56,7 b' var tour_steps = [' | |||
|
56 | 56 | title: "Edit Mode", |
|
57 | 57 | placement: 'bottom', |
|
58 | 58 | onShow: function(tour) { edit_mode(); }, |
|
59 |
content: "Pressing |
|
|
59 | content: "Pressing <tt>enter</tt> or clicking in the input text area of the cell switches to Edit Mode." | |
|
60 | 60 | }, { |
|
61 | 61 | element: '.selected', |
|
62 | 62 | title: "Edit Mode", |
@@ -68,7 +68,7 b' var tour_steps = [' | |||
|
68 | 68 | title: "Back to Command Mode", |
|
69 | 69 | placement: 'bottom', |
|
70 | 70 | onShow: function(tour) { IPython.notebook.command_mode(); }, |
|
71 |
content: "Pressing |
|
|
71 | content: "Pressing <tt>esc</tt> or clicking outside of the input text area takes you back to Command Mode." | |
|
72 | 72 | }, { |
|
73 | 73 | element: '#keyboard_shortcuts', |
|
74 | 74 | title: "Keyboard Shortcuts", |
@@ -45,7 +45,7 b'' | |||
|
45 | 45 | "};\n", |
|
46 | 46 | "</script>\n", |
|
47 | 47 | "\n", |
|
48 |
"Run a code cell using ` |
|
|
48 | "Run a code cell using `shift-enter` or pressing the <button><i class=\"icon-play\"></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above:" | |
|
49 | 49 | ] |
|
50 | 50 | }, |
|
51 | 51 | { |
General Comments 0
You need to be logged in to leave comments.
Login now