Skip to content

Commit

Permalink
Move statements to individual lines
Browse files Browse the repository at this point in the history
  • Loading branch information
looeee committed Sep 29, 2018
1 parent 8958274 commit 099d5a3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions examples/css3d_molecules.html
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,15 @@

switch ( visualizationType ) {

case 0: showAtoms(); break;
case 1: showBonds(); break;
case 2: showAtomsBonds(); break;
case 0:
showAtoms();
break;
case 1:
showBonds();
break;
case 2:
showAtomsBonds();
break;

}

Expand Down

0 comments on commit 099d5a3

Please sign in to comment.