@@ -954,12 +954,13 @@ define(function (require) {
954
954
return ;
955
955
}
956
956
this . _delete_cells ( indices ) ;
957
- }
957
+ } ;
958
958
959
959
Notebook . prototype . delete_selected_cell = function ( indices ) {
960
960
indices = [ this . get_selected_index ( ) ] ;
961
961
this . _delete_cells ( indices )
962
- }
962
+ } ;
963
+
963
964
/**
964
965
* Delete cells from the notebook
965
966
*
@@ -971,7 +972,7 @@ define(function (require) {
971
972
indices = [ this . get_selected_index ( ) ] ;
972
973
}
973
974
this . _delete_cells ( indices ) ;
974
- }
975
+ } ;
975
976
976
977
977
978
Notebook . prototype . _delete_cells = function ( indices ) {
@@ -1404,7 +1405,7 @@ define(function (require) {
1404
1405
Notebook . prototype . cut_marked_cells = function ( ) {
1405
1406
this . copy_marked_cells ( ) ;
1406
1407
this . delete_marked_cells ( ) ;
1407
- }
1408
+ } ;
1408
1409
1409
1410
Notebook . prototype . cut_selected_cell = function ( ) {
1410
1411
this . copy_selected_cell ( ) ;
@@ -1421,15 +1422,15 @@ define(function (require) {
1421
1422
Notebook . prototype . copy_selected_cell = function ( ) {
1422
1423
var cells = [ this . get_selected_cell ( ) ] ;
1423
1424
return this . _copy_cells ( cells ) ;
1424
- }
1425
+ } ;
1425
1426
1426
1427
Notebook . prototype . copy_marked_cells = function ( ) {
1427
1428
var cells = this . get_marked_cells ( ) ;
1428
1429
if ( cells . length === 0 ) {
1429
1430
return ;
1430
1431
}
1431
1432
return this . _copy_cells ( cells ) ;
1432
- }
1433
+ } ;
1433
1434
1434
1435
1435
1436
/**
@@ -1458,7 +1459,7 @@ define(function (require) {
1458
1459
cells = [ this . get_selected_cell ( ) ] ;
1459
1460
}
1460
1461
return this . _copy_cells ( cells ) ;
1461
- }
1462
+ } ;
1462
1463
1463
1464
1464
1465
0 commit comments