@ -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.
@ -29,8 +29,8 @@ var IPython = (function (IPython) {
this.element.focusout(
function() { that.auto_highlight(); }
);