##// END OF EJS Templates
fix some whitespace
Matthias BUSSONNIER -
Show More
@@ -28,13 +28,13 b' var IPython = (function (IPython) {'
28 this.bind_events();
28 this.bind_events();
29 }
29 }
30 this.cell_id = utils.uuid();
30 this.cell_id = utils.uuid();
31
32 };
31 };
33
32
34
33
35 // Subclasses must implement create_element.
34 // Subclasses must implement create_element.
36 Cell.prototype.create_element = function () {};
35 Cell.prototype.create_element = function () {};
37
36
37
38 Cell.prototype.bind_events = function () {
38 Cell.prototype.bind_events = function () {
39 var that = this;
39 var that = this;
40 // We trigger events so that Cell doesn't have to depend on Notebook.
40 // We trigger events so that Cell doesn't have to depend on Notebook.
@@ -29,8 +29,8 b' var IPython = (function (IPython) {'
29
29
30 var that = this;
30 var that = this;
31 this.element.focusout(
31 this.element.focusout(
32 function() { that.auto_highlight(); }
32 function() { that.auto_highlight(); }
33 );
33 );
34 };
34 };
35
35
36
36
General Comments 0
You need to be logged in to leave comments. Login now