Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Fix broken image paths #328

Merged
merged 1 commit into from
Feb 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
![Toolkit CI Status](https://github.com/microsoft/vscode-webview-ui-toolkit/actions/workflows/ci.yml/badge.svg)
![Deploy Docs Status](https://github.com/microsoft/vscode-webview-ui-toolkit/actions/workflows/docs-cd.yml/badge.svg)

![Webview Toolkit for Visual Studio Code Artwork](./docs/assets/toolkit-artwork.png)
![Webview Toolkit for Visual Studio Code Artwork](./docs/assets/images/toolkit-artwork.png)

## Introduction

Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ To test that everything is working, inside the editor, press `F5`. This will com

When the host window opens, open the Command Palette (`Crtl + Shift + P` or `Cmd + Shift + P` on Mac), type "Hello World", and click `enter` to run the command which should display the webview panel.

![Testing That The Webview Extension Works](./assets/webview-test.gif)
![Testing That The Webview Extension Works](./assets/images/webview-test.gif)

## Part 2: Install and set up the toolkit

Expand Down Expand Up @@ -383,13 +383,13 @@ private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {
}
```

![Testing That The Toolkit Works](./assets/toolkit-button-test.gif)
![Testing That The Toolkit Works](./assets/images/toolkit-button-test.gif)

Theming is built right into the components so feel free to test that out too!

Open the Command Pallette (`Crtl + Shift + P` or `Cmd + Shift + P` on Mac), search for "Preferences: Color Theme", and cycle through all the themes to see the button change!

![Testing That The Toolkit Theme Utilities Work](./assets/toolkit-theme-test.gif)
![Testing That The Toolkit Theme Utilities Work](./assets/images/toolkit-theme-test.gif)

## Part 3: Set up message passing

Expand Down Expand Up @@ -497,7 +497,7 @@ private _getWebviewContent(webview: vscode.Webview, extensionUri: vscode.Uri) {

Per usual, let's test that this all works by running the extension and clicking the on the Howdy button.

![Testing that the clicking the howdy button works](./assets/toolkit-button-click-test.png)
![Testing that the clicking the howdy button works](./assets/images/toolkit-button-click-test.png)

## Next steps

Expand Down