From 4aff6f6bc49a179108196088f34ce352900c374b Mon Sep 17 00:00:00 2001 From: blackbaud-johnly Date: Tue, 4 Dec 2018 15:35:11 -0500 Subject: [PATCH 1/2] Document tile help button property and event --- src/app/components/tile/index.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/app/components/tile/index.html b/src/app/components/tile/index.html index cc56c7cca..4390af107 100644 --- a/src/app/components/tile/index.html +++ b/src/app/components/tile/index.html @@ -17,6 +17,13 @@ > Indicates whether the tile is in a collapsed state. + + Indicates whether to display a help button in the tile's header. + + + Fires when users select the help button in the tile header. The help button only appears if the showHelp property is set to true. + @@ -35,7 +47,7 @@ - Fires when users select the settings button on the tile. The settings button only appears on the tile when the showSettings property is set to true. + Fires when users select the settings button on the tile. The settings button only appears if the showSettings property is set to true. From a4f827ed739603e48a3ac97c13073a9791e2f498 Mon Sep 17 00:00:00 2001 From: blackbaud-johnly Date: Wed, 5 Dec 2018 07:51:14 -0500 Subject: [PATCH 2/2] Update showHelp and showSettings descriptions --- src/app/components/tile/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/tile/index.html b/src/app/components/tile/index.html index 4390af107..d37c282b2 100644 --- a/src/app/components/tile/index.html +++ b/src/app/components/tile/index.html @@ -22,14 +22,14 @@ isOptional="true" defaultValue="false" > - Indicates whether to display a help button in the tile's header. + Indicates whether to display a help button in the tile's header. To display the button, you must also listen for the helpClick event. - Indicates whether to display the settings button on the tile. + Indicates whether to display a settings button on the tile. To display the button, you must also listen for the settingsClick event.