##// END OF EJS Templates
remove private methods
Matthias Bussonnier -
Show More
@@ -147,17 +147,6 b' define(['
147
147
148 CodeCell.prototype = Object.create(Cell.prototype);
148 CodeCell.prototype = Object.create(Cell.prototype);
149
149
150 /**
151 * @private
152 * Update the current state of the config file in the profile with current config.
153 **/
154 CodeCell.prototype._fill_config_with_current = function(){
155 var keys = ['cm_config','highlight_modes'];
156 for(var i in keys){
157 this.class_config.set(keys[i], this.class_config.get_sync(keys[i]));
158 }
159 }
160
161 /** @method create_element */
150 /** @method create_element */
162 CodeCell.prototype.create_element = function () {
151 CodeCell.prototype.create_element = function () {
163 Cell.prototype.create_element.apply(this, arguments);
152 Cell.prototype.create_element.apply(this, arguments);
General Comments 0
You need to be logged in to leave comments. Login now