Skip to content

Commit 3b1090c

Browse files
committed
docs: Replace "click here" links
1 parent 28d860e commit 3b1090c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docusaurus/docs/Angular/concepts/themeing-and-css.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The default theme is `light`.
3333

3434
## Customizing the theme
3535

36-
You can customize the theme by overriding the CSS variables. The complete list of variables can be found [here](https://github.com/GetStream/stream-chat-css/blob/main/src/styles/_variables.scss).
36+
You can customize the theme by overriding the CSS variables. The [complete list of CSS variables](https://github.com/GetStream/stream-chat-css/blob/main/src/styles/_variables.scss) can be found in the stream-chat-css repository.
3737

3838
You can override the variables using the `ThemeService`. Here is an example:
3939

docusaurus/docs/Angular/services/channel.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `ChannelService` provides data and interaction for the channel list and mess
1010

1111
## init
1212

13-
Queries the channels with the given filters, sorts and options. More info about channel querying can be found [here](https://getstream.io/chat/docs/javascript/query_channels/?language=javascript).
13+
Queries the channels with the given filters, sorts and options. More info about [channel querying](https://getstream.io/chat/docs/javascript/query_channels/?language=javascript) can be found in the platform documentation.
1414

1515
## channels$
1616

@@ -30,7 +30,7 @@ Emits the currently loaded and [watched](https://getstream.io/chat/docs/javascri
3030

3131
It's important to note that filters don't apply to updates to the list from events.
3232

33-
You can read more about events [here](https://getstream.io/chat/docs/javascript/event_object/?language=javascript#events).
33+
Our platform documentation covers the topic of [channel events](https://getstream.io/chat/docs/javascript/event_object/?language=javascript#events) in depth.
3434

3535
## activeChannel$
3636

@@ -74,8 +74,8 @@ Resends the given message.
7474

7575
## uploadAttachments
7676

77-
Uploads files to the channel, more info can be found [here](https://getstream.io/chat/docs/javascript/file_uploads/?language=javascript).
77+
Uploads files to the channel. If you want to know more about [file uploads](https://getstream.io/chat/docs/javascript/file_uploads/?language=javascript) check out the platform documentation.
7878

7979
## deleteAttachment
8080

81-
Deletes an uploaded file by URL, more info can be found [here](https://getstream.io/chat/docs/javascript/file_uploads/?language=javascript).
81+
Deletes an uploaded file by URL. If you want to know more about [file uploads](https://getstream.io/chat/docs/javascript/file_uploads/?language=javascript) check out the platform documentation

docusaurus/docs/Angular/services/chat-client.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ The `ChatClient` service connects the user to the Stream chat.
1010

1111
## init
1212

13-
Creates a [`StreamChat`](https://github.com/GetStream/stream-chat-js/blob/668b3e5521339f4e14fc657834531b4c8bf8176b/src/client.ts#L124) instance using the provided `apiKey`, and connects a user with the given `userId` and `userToken`. More info about connecting users can be found [here](https://getstream.io/chat/docs/javascript/init_and_users/?language=javascript).
13+
Creates a [`StreamChat`](https://github.com/GetStream/stream-chat-js/blob/668b3e5521339f4e14fc657834531b4c8bf8176b/src/client.ts#L124) instance using the provided `apiKey`, and connects a user with the given `userId` and `userToken`. More info about [connecting users](https://getstream.io/chat/docs/javascript/init_and_users/?language=javascript) can be found in the platform documentation.
1414

1515
## notification$
1616

17-
Emits [`Notification`](https://github.com/GetStream/stream-chat-angular/blob/master/projects/stream-chat-angular/src/lib/chat-client.service.ts) events, the list of supported events can be found [here](https://github.com/GetStream/stream-chat-angular/blob/master/projects/stream-chat-angular/src/lib/chat-client.service.ts). More about events in Stream Chat can be found [here](https://getstream.io/chat/docs/javascript/event_object/?language=javascript).
17+
Emits [`Notification`](https://github.com/GetStream/stream-chat-angular/blob/master/projects/stream-chat-angular/src/lib/chat-client.service.ts) events, the list of [supported events](https://github.com/GetStream/stream-chat-angular/blob/master/projects/stream-chat-angular/src/lib/chat-client.service.ts) can be found on GitHub. The platform documentation covers [events in detail](https://getstream.io/chat/docs/javascript/event_object/?language=javascript).
1818

1919
## connectionState$
2020

2121
Emits the current connection state of the user (`online` or `offline`)
2222

2323
## flagMessage
2424

25-
Flag the message with the given ID, more info can be found [here](https://getstream.io/chat/docs/javascript/moderation/?language=javascript).
25+
Flag the message with the given ID. If you want to know [more about falgs](https://getstream.io/chat/docs/javascript/moderation/?language=javascript) check out the platform documentation.

0 commit comments

Comments
 (0)