-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic content for the help dialog, see #249
- Loading branch information
1 parent
facf5ab
commit 398035c
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2022, University of Colorado Boulder | ||
|
||
/** | ||
* The keyboard help content for the Quadrilateral sim. This has yet to be designed and is just ready for more content. | ||
* TODO: Finish this in https://github.com/phetsims/quadrilateral/issues/249 | ||
* | ||
* @author Jesse Greenberg (PhET Interactive Simulations) | ||
*/ | ||
|
||
import quadrilateral from '../../quadrilateral.js'; | ||
import BasicActionsKeyboardHelpSection from '../../../../scenery-phet/js/keyboard/help/BasicActionsKeyboardHelpSection.js'; | ||
import { Node } from '../../../../scenery/js/imports.js'; | ||
|
||
class QuadrilateralKeyboardHelpContent extends Node { | ||
public constructor() { | ||
const generalContent = new BasicActionsKeyboardHelpSection(); | ||
super( { | ||
children: [ generalContent ] | ||
} ); | ||
} | ||
} | ||
|
||
quadrilateral.register( 'QuadrilateralKeyboardHelpContent', QuadrilateralKeyboardHelpContent ); | ||
export default QuadrilateralKeyboardHelpContent; |