Skip to content

Commit

Permalink
add @static #360
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Malley <[email protected]>
  • Loading branch information
pixelzoom committed May 15, 2018
1 parent b9df626 commit 8357742
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/ToggleNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ define( function( require ) {
* Center the latter nodes on the x center of the first node.
* @param {Node[]} children
* @public
* @static
*/
HORIZONTAL: function( children ) {
for ( var i = 1; i < children.length; i++ ) {
Expand All @@ -93,6 +94,7 @@ define( function( require ) {
* Center the latter nodes on the y center of the first node.
* @param {Node[]} children
* @public
* @static
*/
VERTICAL: function( children ) {
for ( var i = 1; i < children.length; i++ ) {
Expand All @@ -104,6 +106,7 @@ define( function( require ) {
* Center the latter nodes on the x,y center of the first node.
* @param {Node[]} children
* @public
* @static
*/
CENTER: function( children ) {
for ( var i = 1; i < children.length; i++ ) {
Expand Down

0 comments on commit 8357742

Please sign in to comment.