Skip to content

Commit da35011

Browse files
fix app link
1 parent ca6a46a commit da35011

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ sync'd Oct. 17, 2025
112112
| Timer PWA | Has a **Set timer** button, and you can set the duration of the timer. | [/pwa-timer/](https://github.com/MicrosoftEdge/Demos/tree/main/pwa-timer/) | [Timer PWA demo](https://microsoftedge.github.io/Demos/pwa-timer/) |
113113
| PWA To Do | Create lists of tasks locally in your browser, or by installing the app. Click **About** link in rendered demo. | [/pwa-to-do/](https://github.com/MicrosoftEdge/Demos/tree/main/pwa-to-do/) | [PWA To Do](https://microsoftedge.github.io/Demos/pwa-to-do/) demo |
114114
| PWAmp | A music player that plays local audio files. | [/pwamp/](https://github.com/MicrosoftEdge/Demos/tree/main/pwamp/) | [pwamp](https://microsoftedge.github.io/Demos/pwamp/) demo |
115-
| Temperature converter | Converts temperatures. Used for [Temperature convertor sample](https://learn.microsoft.com/microsoft-edge/progressive-web-apps/samples/temperature-converter). | [/temperature-converter/](https://github.com/MicrosoftEdge/Demos/tree/main/temperature-converter/) | [Temperature converter](https://microsoftedge.github.io/Demos/pwa-getting-started/) demo |
115+
| Temperature converter | Converts temperatures. Used for [Temperature convertor sample](https://learn.microsoft.com/microsoft-edge/progressive-web-apps/samples/temperature-converter). | [/temperature-converter/](https://github.com/MicrosoftEdge/Demos/tree/main/temperature-converter/) | [Temperature converter](https://microsoftedge.github.io/Demos/temperature-converter/) demo |
116116
| wami | An image manipulation app to crop, resize, or add effects to images. | [/wami/](https://github.com/MicrosoftEdge/Demos/tree/main/wami/) | [wami](https://microsoftedge.github.io/Demos/wami/) demo |
117117

118118
To learn how to use and develop PWAs, start with the Temperature convertor sample.

pwa-installer/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ <h2>Instructions</h2>
4747
</article>
4848

4949
<article class="app-entry" data-categories="samples productivity"
50-
data-install-url="https://microsoftedge.github.io/Demos/pwa-getting-started/index.html"
51-
data-manifest-id="https://microsoftedge.github.io/Demos/pwa-getting-started/">
52-
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/pwa-getting-started/icon512.png"
50+
data-install-url="https://microsoftedge.github.io/Demos/temperature-converter/index.html"
51+
data-manifest-id="https://microsoftedge.github.io/Demos/temperature-converter/">
52+
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/temperature-converter/icon512.png"
5353
width="75" height="75" class="app-icon">
54-
<h2><a href="https://microsoftedge.github.io/Demos/pwa-getting-started/index.html" target="_blank">Temperature
54+
<h2><a href="https://microsoftedge.github.io/Demos/temperature-converter/index.html" target="_blank">Temperature
5555
converter</a> - PWA getting started demo app</h2>
5656
<p class="app-description">A simple PWA demo app that converts temperatures.
5757
For instructions, see <a href="https://learn.microsoft.com/microsoft-edge/progressive-web-apps/how-to/"

pwa-pwastore/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bubbleBtn.addEventListener('click', async () => {
3030
});
3131

3232
tempConvBtn.addEventListener('click', async () => {
33-
let installation = await navigator.install('https://microsoftedge.github.io/Demos/pwa-getting-started/index.html', 'https://microsoftedge.github.io/Demos/pwa-getting-started/');
33+
let installation = await navigator.install('https://microsoftedge.github.io/Demos/temperature-converter/index.html', 'https://microsoftedge.github.io/Demos/temperature-converter/');
3434

3535
});
3636

pwa-pwastore/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ <h2>Instructions</h2>
4040
</article>
4141

4242
<article class="app_entry">
43-
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/pwa-getting-started/icon512.png" width="75" height="75" class="app_icon">
44-
<h2><a href="https://microsoftedge.github.io/Demos/pwa-getting-started/index.html" target="_blank">Temperature converter</a> - PWA getting started demo app</h2>
43+
<img src="https://raw.githubusercontent.com/MicrosoftEdge/Demos/refs/heads/main/temperature-converter/icon512.png" width="75" height="75" class="app_icon">
44+
<h2><a href="https://microsoftedge.github.io/Demos/temperature-converter/index.html" target="_blank">Temperature converter</a> - PWA getting started demo app</h2>
4545
<p class="app_descrip">A simple PWA demo app that converts temperatures. Used for <a href="https://learn.microsoft.com/microsoft-edge/progressive-web-apps/how-to/" target="_blank">Get started with Progressive Web Apps.</a></p>
4646
<button id="installPwaGettingStarted" class="btn_install">Install</button>
4747
</article>

0 commit comments

Comments
 (0)