##// END OF EJS Templates
add more tooltips for Cell menu
Paul Ivanov -
Show More
@@ -129,11 +129,19 b' class="notebook_app"'
129 <li id="run_all_cells_below" title="Run this cell and all cells below it">
129 <li id="run_all_cells_below" title="Run this cell and all cells below it">
130 <a href="#">Run All Below</a></li>
130 <a href="#">Run All Below</a></li>
131 <li class="divider"></li>
131 <li class="divider"></li>
132 <li id="change_cell_type" class="dropdown-submenu"><a href="#">Cell Type</a>
132 <li id="change_cell_type" class="dropdown-submenu"
133 title="All cells in the notebook have a cell type. By default, new cells are created as 'Code' cells">
134 <a href="#">Cell Type</a>
133 <ul class="dropdown-menu">
135 <ul class="dropdown-menu">
134 <li id="to_code"><a href="#">Code</a></li>
136 <li id="to_code"
135 <li id="to_markdown"><a href="#">Markdown </a></li>
137 title="Contents will be sent to the kernel for execution, and output will display in the footer of cell">
136 <li id="to_raw"><a href="#">Raw Text</a></li>
138 <a href="#">Code</a></li>
139 <li id="to_markdown"
140 title="Contents will be rendered as HTML and serve as explanatory text">
141 <a href="#">Markdown</a></li>
142 <li id="to_raw"
143 title="Contents will display unmodified in a fixed-width font">
144 <a href="#">Raw Text</a></li>
137 <li id="to_heading1"><a href="#">Heading 1</a></li>
145 <li id="to_heading1"><a href="#">Heading 1</a></li>
138 <li id="to_heading2"><a href="#">Heading 2</a></li>
146 <li id="to_heading2"><a href="#">Heading 2</a></li>
139 <li id="to_heading3"><a href="#">Heading 3</a></li>
147 <li id="to_heading3"><a href="#">Heading 3</a></li>
@@ -143,13 +151,17 b' class="notebook_app"'
143 </ul>
151 </ul>
144 </li>
152 </li>
145 <li class="divider"></li>
153 <li class="divider"></li>
146 <li id="toggle_output"><a href="#">Toggle Current Output</a></li>
154 <li id="toggle_output"
155 title="Show/Hide the output portion of a Code cell">
156 <a href="#">Toggle Current Output</a></li>
147 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
157 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
148 <ul class="dropdown-menu">
158 <ul class="dropdown-menu">
149 <li id="expand_all_output"><a href="#">Expand</a></li>
159 <li id="expand_all_output"><a href="#">Expand</a></li>
150 <li id="scroll_all_output"><a href="#">Scroll Long</a></li>
160 <li id="scroll_all_output"><a href="#">Scroll Long</a></li>
151 <li id="collapse_all_output"><a href="#">Collapse</a></li>
161 <li id="collapse_all_output"><a href="#">Collapse</a></li>
152 <li id="clear_all_output"><a href="#">Clear</a></li>
162 <li id="clear_all_output"
163 title="Remove the output portion of all Code cells">
164 <a href="#">Clear</a></li>
153 </ul>
165 </ul>
154 </li>
166 </li>
155 </ul>
167 </ul>
General Comments 0
You need to be logged in to leave comments. Login now