Skip to content

Commit

Permalink
Remove survey.onVisibleChanged from docs fix surveyjs/service#2028
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Mar 14, 2024
1 parent 1054f89 commit 5242cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/survey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class SurveyModel extends SurveyElementCore
* Refer to the following help topic for information on how to implement conditional visibility: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#conditional-visibility).
*/
public onQuestionVisibleChanged: EventBase<SurveyModel, QuestionVisibleChangedEvent> = this.addEvent<SurveyModel, QuestionVisibleChangedEvent>();
public onVisibleChanged: EventBase<SurveyModel, QuestionVisibleChangedEvent> = this.onQuestionVisibleChanged;
public onVisibleChanged: EventBase<SurveyModel, any> = this.onQuestionVisibleChanged;
/**
* An event that is raised after page visibility is changed.
*
Expand Down

0 comments on commit 5242cdf

Please sign in to comment.