Skip to content

Commit fe5d9fb

Browse files
committed
moar semicolons
1 parent 4373453 commit fe5d9fb

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

notebook/static/notebook/js/notebook.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -954,12 +954,13 @@ define(function (require) {
954954
return;
955955
}
956956
this._delete_cells(indices);
957-
}
957+
};
958958

959959
Notebook.prototype.delete_selected_cell = function(indices) {
960960
indices = [this.get_selected_index()];
961961
this._delete_cells(indices)
962-
}
962+
};
963+
963964
/**
964965
* Delete cells from the notebook
965966
*
@@ -971,7 +972,7 @@ define(function (require) {
971972
indices = [this.get_selected_index()];
972973
}
973974
this._delete_cells(indices);
974-
}
975+
};
975976

976977

977978
Notebook.prototype._delete_cells = function(indices) {
@@ -1404,7 +1405,7 @@ define(function (require) {
14041405
Notebook.prototype.cut_marked_cells = function () {
14051406
this.copy_marked_cells();
14061407
this.delete_marked_cells();
1407-
}
1408+
};
14081409

14091410
Notebook.prototype.cut_selected_cell = function () {
14101411
this.copy_selected_cell();
@@ -1421,15 +1422,15 @@ define(function (require) {
14211422
Notebook.prototype.copy_selected_cell = function () {
14221423
var cells = [this.get_selected_cell()];
14231424
return this._copy_cells(cells);
1424-
}
1425+
};
14251426

14261427
Notebook.prototype.copy_marked_cells = function () {
14271428
var cells = this.get_marked_cells();
14281429
if(cells.length === 0){
14291430
return;
14301431
}
14311432
return this._copy_cells(cells);
1432-
}
1433+
};
14331434

14341435

14351436
/**
@@ -1458,7 +1459,7 @@ define(function (require) {
14581459
cells = [this.get_selected_cell()];
14591460
}
14601461
return this._copy_cells(cells);
1461-
}
1462+
};
14621463

14631464

14641465

0 commit comments

Comments
 (0)