##// END OF EJS Templates
Adding "Cell" to cell related Edit actions.
Brian Granger -
Show More
@@ -81,22 +81,22 b''
81 </li>
81 </li>
82 <li><a href="#">Edit</a>
82 <li><a href="#">Edit</a>
83 <ul>
83 <ul>
84 <li id="cut_cell"><a href="#">Cut</a></li>
84 <li id="cut_cell"><a href="#">Cut Cell</a></li>
85 <li id="copy_cell"><a href="#">Copy</a></li>
85 <li id="copy_cell"><a href="#">Copy Cell</a></li>
86 <li id="paste_cell" class="ui-state-disabled"><a href="#">Paste</a></li>
86 <li id="paste_cell" class="ui-state-disabled"><a href="#">Paste Cell</a></li>
87 <li id="paste_cell_above" class="ui-state-disabled"><a href="#">Paste Above</a></li>
87 <li id="paste_cell_above" class="ui-state-disabled"><a href="#">Paste Cell Above</a></li>
88 <li id="paste_cell_below" class="ui-state-disabled"><a href="#">Paste Below</a></li>
88 <li id="paste_cell_below" class="ui-state-disabled"><a href="#">Paste Cell Below</a></li>
89 <li id="delete_cell"><a href="#">Delete</a></li>
89 <li id="delete_cell"><a href="#">Delete</a></li>
90 <hr/>
90 <hr/>
91 <li id="split_cell"><a href="#">Split</a></li>
91 <li id="split_cell"><a href="#">Split Cell</a></li>
92 <li id="merge_cell_above"><a href="#">Merge Above</a></li>
92 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
93 <li id="merge_cell_below"><a href="#">Merge Below</a></li>
93 <li id="merge_cell_below"><a href="#">Merge Cell Below</a></li>
94 <hr/>
94 <hr/>
95 <li id="move_cell_up"><a href="#">Move Up</a></li>
95 <li id="move_cell_up"><a href="#">Move Cell Up</a></li>
96 <li id="move_cell_down"><a href="#">Move Down</a></li>
96 <li id="move_cell_down"><a href="#">Move Cell Down</a></li>
97 <hr/>
97 <hr/>
98 <li id="select_previous"><a href="#">Select Previous</a></li>
98 <li id="select_previous"><a href="#">Select Previous Cell</a></li>
99 <li id="select_next"><a href="#">Select Next</a></li>
99 <li id="select_next"><a href="#">Select Next Cell</a></li>
100 </ul>
100 </ul>
101 </li>
101 </li>
102 <li><a href="#">View</a>
102 <li><a href="#">View</a>
@@ -153,20 +153,20 b''
153 <button id="save_b">Save</button>
153 <button id="save_b">Save</button>
154 </span>
154 </span>
155 <span id="cut_copy_paste">
155 <span id="cut_copy_paste">
156 <button id="cut_b" title="Cut">Cut</button>
156 <button id="cut_b" title="Cut Cell">Cut Cell</button>
157 <button id="copy_b" title="Copy">Copy</button>
157 <button id="copy_b" title="Copy Cell">Copy Cell</button>
158 <button id="paste_b" title="Paste">Paste</button>
158 <button id="paste_b" title="Paste Cell">Paste Cell</button>
159 </span>
159 </span>
160 <span id="move_up_down">
160 <span id="move_up_down">
161 <button id="move_up_b" title="Move Up">Move Up</button>
161 <button id="move_up_b" title="Move Cell Up">Move Cell Up</button>
162 <button id="move_down_b" title="Move Down">Move Down</button>
162 <button id="move_down_b" title="Move Cell Down">Move Down</button>
163 </span>
163 </span>
164 <span id="insert_above_below">
164 <span id="insert_above_below">
165 <button id="insert_above_b" title="Insert Above">Insert Above</button>
165 <button id="insert_above_b" title="Insert Cell Above">Insert Cell Above</button>
166 <button id="insert_below_b" title="Insert Below">Insert Below</button>
166 <button id="insert_below_b" title="Insert Cell Below">Insert Cell Below</button>
167 </span>
167 </span>
168 <span id="run_int">
168 <span id="run_int">
169 <button id="run_b" title="Run">Run</button>
169 <button id="run_b" title="Run Cell">Run Cell</button>
170 <button id="interrupt_b" title="Interrupt">Interrupt</button>
170 <button id="interrupt_b" title="Interrupt">Interrupt</button>
171 </span>
171 </span>
172 <span>
172 <span>
General Comments 0
You need to be logged in to leave comments. Login now