fix some whitespace

This commit is contained in:
Matthias BUSSONNIER 2012-08-24 11:52:31 +02:00
parent d88f7d4c72
commit 6526b6ea68
2 changed files with 3 additions and 3 deletions

View File

@ -28,13 +28,13 @@ var IPython = (function (IPython) {
this.bind_events();
}
this.cell_id = utils.uuid();
};
// Subclasses must implement create_element.
Cell.prototype.create_element = function () {};
Cell.prototype.bind_events = function () {
var that = this;
// We trigger events so that Cell doesn't have to depend on Notebook.

View File

@ -29,8 +29,8 @@ var IPython = (function (IPython) {
var that = this;
this.element.focusout(
function() { that.auto_highlight(); }
);
function() { that.auto_highlight(); }
);
};