##// END OF EJS Templates
Clean up accidentally introduced hard tabs in JS code.
Fernando Perez -
Show More
@@ -342,4 +342,4 b' div.text_cell_render {'
342 342 }
343 343
344 344 .shortcut_descr {
345 } No newline at end of file
345 }
@@ -88,11 +88,11 b' var IPython = (function (IPython) {'
88 88 return false;
89 89 };
90 90 } else if (event.keyCode === 76 && event.ctrlKey && event.shiftKey
91 && event.type == 'keydown') {
91 && event.type == 'keydown') {
92 92 // toggle line numbers with Ctrl-Shift-L
93 this.toggle_line_numbers()
93 this.toggle_line_numbers();
94 94 }
95 else {
95 else {
96 96 // keypress/keyup also trigger on TAB press, and we don't want to
97 97 // use those to disable tab completion.
98 98 if (this.is_completing && event.keyCode !== 9) {
@@ -184,12 +184,12 b' var IPython = (function (IPython) {'
184 184 };
185 185
186 186 CodeCell.prototype.toggle_line_numbers = function () {
187 if (this.code_mirror.getOption('lineNumbers') == false) {
188 this.code_mirror.setOption('lineNumbers', true);
189 } else {
190 this.code_mirror.setOption('lineNumbers', false);
191 }
192 this.code_mirror.refresh()
187 if (this.code_mirror.getOption('lineNumbers') == false) {
188 this.code_mirror.setOption('lineNumbers', true);
189 } else {
190 this.code_mirror.setOption('lineNumbers', false);
191 }
192 this.code_mirror.refresh()
193 193 };
194 194
195 195 CodeCell.prototype.select = function () {
@@ -16,14 +16,14 b' var IPython = (function (IPython) {'
16 16 if (this.selector !== undefined) {
17 17 this.element = $(selector);
18 18 this.content = this.element.find('div.header');
19 this.style();
19 this.style();
20 20 this.bind_events();
21 21 }
22 22 };
23 23
24 24 HeaderSection.prototype.style = function () {
25 this.content.addClass('ui-helper-clearfix');
26 this.content.find('#quick_help').button();
25 this.content.addClass('ui-helper-clearfix');
26 this.content.find('#quick_help').button();
27 27 };
28 28
29 29 HeaderSection.prototype.bind_events = function () {
@@ -147,7 +147,7 b' var IPython = (function (IPython) {'
147 147 return false;
148 148 } else if (event.which === 190 && that.control_key_active) {
149 149 // Restart kernel = . # matches qt console
150 IPython.notebook.restart_kernel();
150 IPython.notebook.restart_kernel();
151 151 that.control_key_active = false;
152 152 return false;
153 153 } else if (that.control_key_active) {
@@ -213,8 +213,8 b' var IPython = (function (IPython) {'
213 213 {key: 'Ctrl-m m', help: 'markdown cell'},
214 214 {key: 'Ctrl-m p', help: 'select previous'},
215 215 {key: 'Ctrl-m n', help: 'select next'},
216 {key: 'Ctrl-m i', help: 'interrupt kernel'},
217 {key: 'Ctrl-m .', help: 'restart kernel'},
216 {key: 'Ctrl-m i', help: 'interrupt kernel'},
217 {key: 'Ctrl-m .', help: 'restart kernel'},
218 218 {key: 'Ctrl-m h', help: 'show keyboard shortcuts'}
219 219 ];
220 220 for (var i=0; i<shortcuts.length; i++) {
@@ -623,7 +623,7 b' var IPython = (function (IPython) {'
623 623 // Other cell functions: line numbers, ...
624 624
625 625 Notebook.prototype.cell_toggle_line_numbers = function() {
626 this.selected_cell().toggle_line_numbers()
626 this.selected_cell().toggle_line_numbers()
627 627 };
628 628
629 629 // Kernel related things
@@ -636,7 +636,7 b' var IPython = (function (IPython) {'
636 636
637 637
638 638 Notebook.prototype.restart_kernel = function () {
639 var that = this;
639 var that = this;
640 640 var notebook_id = IPython.save_widget.get_notebook_id();
641 641
642 642 var dialog = $('<div/>');
@@ -648,7 +648,7 b' var IPython = (function (IPython) {'
648 648 title: "Restart kernel or continue running?",
649 649 buttons : {
650 650 "Restart": function () {
651 that.kernel.restart($.proxy(that.kernel_started, that));
651 that.kernel.restart($.proxy(that.kernel_started, that));
652 652 $(this).dialog('close');
653 653 },
654 654 "Continue running": function () {
@@ -65,7 +65,7 b''
65 65 <div id="MathJaxFetchingWarning"
66 66 style="width:80%; margin:auto;padding-top:20%;text-align: justify; display:none">
67 67 <p style="font-size:26px;">There was an issue trying to fetch MathJax.js
68 from the internet.</p>
68 from the internet.</p>
69 69
70 70 <p style="padding:0.2em"> With a working internet connection, you can run
71 71 the following at a Python or IPython prompt, which will install a local
@@ -278,5 +278,3 b''
278 278 </body>
279 279
280 280 </html>
281
282
General Comments 0
You need to be logged in to leave comments. Login now