Skip to content

Commit

Permalink
Omit capacitors, inductors and AC sources from DC tandem tree, see ph…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jan 28, 2022
1 parent a935438 commit 10302db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion js/intro/model/IntroModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class IntroModel extends CircuitConstructionKitModel {
* @constructor
*/
constructor( tandem ) {
super( tandem );
super( false, tandem );
}
}

Expand Down
5 changes: 1 addition & 4 deletions js/lab/model/LabModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ import circuitConstructionKitDc from '../../circuitConstructionKitDc.js';

class LabModel extends CircuitConstructionKitModel {

/**
* @param {Tandem}
*/
constructor( tandem ) {
super( tandem );
super( false, tandem );
}
}

Expand Down

0 comments on commit 10302db

Please sign in to comment.