Show More
@@ -33,6 +33,18 b' var IPython = (function (IPython) {' | |||
|
33 | 33 | } |
|
34 | 34 | } |
|
35 | 35 | ]); |
|
36 | ||
|
37 | this.add_buttons_group([ | |
|
38 | { | |
|
39 | id : 'insert_below_b', | |
|
40 | label : 'Insert Cell Below', | |
|
41 | icon : 'icon-plus-sign', | |
|
42 | callback : function () { | |
|
43 | IPython.notebook.insert_cell_below('code'); | |
|
44 | } | |
|
45 | } | |
|
46 | ],'insert_above_below'); | |
|
47 | ||
|
36 | 48 | this.add_buttons_group([ |
|
37 | 49 | { |
|
38 | 50 | id : 'cut_b', |
@@ -79,24 +91,6 b' var IPython = (function (IPython) {' | |||
|
79 | 91 | } |
|
80 | 92 | ],'move_up_down'); |
|
81 | 93 | |
|
82 | this.add_buttons_group([ | |
|
83 | { | |
|
84 | id : 'insert_above_b', | |
|
85 | label : 'Insert Cell Above', | |
|
86 | icon : 'icon-circle-arrow-up', | |
|
87 | callback : function () { | |
|
88 | IPython.notebook.insert_cell_above('code'); | |
|
89 | } | |
|
90 | }, | |
|
91 | { | |
|
92 | id : 'insert_below_b', | |
|
93 | label : 'Insert Cell Below', | |
|
94 | icon : 'icon-circle-arrow-down', | |
|
95 | callback : function () { | |
|
96 | IPython.notebook.insert_cell_below('code'); | |
|
97 | } | |
|
98 | } | |
|
99 | ],'insert_above_below'); | |
|
100 | 94 | |
|
101 | 95 | this.add_buttons_group([ |
|
102 | 96 | { |
General Comments 0
You need to be logged in to leave comments.
Login now