Skip to content

Commit

Permalink
#1003: Changed comments about Platform.Bible logo to be more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
tombogle committed Sep 11, 2024
1 parent b5b1096 commit 46202cf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/papi-dts/papi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ declare module 'shared/models/web-view.model' {
/**
* Url of image to show on the title bar of the tab
*
* Defaults to Platform.Bible logo
* Defaults to the software's standard logo.
*/
iconUrl?: string;
/** Name of the tab for the WebView */
Expand Down Expand Up @@ -3024,7 +3024,7 @@ declare module 'shared/models/docking-framework.model' {
/**
* Url of image to show on the title bar of the tab
*
* Defaults to Platform.Bible logo
* Defaults to the software's standard logo.
*/
tabIconUrl?: string;
/** Text to show on the title bar of the tab */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type PlatformTabTitleProps = {
webViewType?: `${string}.${string}`;
/** Id of the tab this title is on */
tabId: string;
/** Url to image to show on the tab. Defaults to Platform.Bible logo */
/** Url to image to show on the tab. Defaults to the software's standard logo. */
iconUrl?: string;
/** Text to show on the tab */
text: string;
Expand All @@ -22,7 +22,7 @@ type PlatformTabTitleProps = {
/**
* Custom tab title for all tabs in Platform
*
* @param iconUrl Url to image to show on the tab. Defaults to Platform.Bible logo
* @param iconUrl Url to image to show on the tab. Defaults to the software's standard logo.
* @param text The text to show on the tab title
* @param tooltip Text to show when hovering over the tab. Defaults to empty string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/shared/models/docking-framework.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export type TabInfo = SavedTabInfo & {
/**
* Url of image to show on the title bar of the tab
*
* Defaults to Platform.Bible logo
* Defaults to the software's standard logo.
*/
tabIconUrl?: string;
/** Text to show on the title bar of the tab */
Expand Down
2 changes: 1 addition & 1 deletion src/shared/models/web-view.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type WebViewDefinitionBase = {
/**
* Url of image to show on the title bar of the tab
*
* Defaults to Platform.Bible logo
* Defaults to the software's standard logo.
*/
iconUrl?: string;
/** Name of the tab for the WebView */
Expand Down

0 comments on commit 46202cf

Please sign in to comment.