Skip to content

Commit b3e4f99

Browse files
docs(animationContainer): update method names
1 parent 2134b15 commit b3e4f99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/animationcontainer/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To use the animation container, add the `TelerikAnimationContainer` tag.
3232
3333
public void ToggleContainer()
3434
{
35-
myPopupRef.Toggle();
35+
myPopupRef.ToggleAsync();
3636
}
3737
}
3838
````
@@ -85,12 +85,12 @@ The animation container exposes the following properties and methods:
8585
8686
public void ShowContainer()
8787
{
88-
myPopup.Show();
88+
myPopup.ShowAsync();
8989
}
9090
9191
public void HideContainer()
9292
{
93-
myPopup.Hide();
93+
myPopup.HideAsync();
9494
}
9595
}
9696

0 commit comments

Comments
 (0)