sequence.js 151 B

1234567
  1. this.positionChanged = function(){
  2. this.children.forEach(child => {
  3. if(child.note){
  4. child.positionChanged();
  5. }
  6. })
  7. }