Skip to content

Commit f58d1dc

Browse files
authored
Merge branch 'sveltejs:master' into master
2 parents 701292f + c183bae commit f58d1dc

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ staleLabel: stale-bot
2828
# Your comment here.
2929

3030
# Limit the number of actions per hour, from 1-30. Default is 30
31-
limitPerRun: 30
31+
limitPerRun: 1
3232

3333
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
3434
pulls:

site/content/blog/2017-09-06-the-zen-of-just-writing-css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The consequence of all this is the **append-only stylesheet**. There's no way of
2828
The idea behind SFCs is simple: you write your components in an HTML file that (optionally) contains a `<style>` and `<script>` attribute describing the component's styles and behaviour. Svelte, Ractive, Vue and Polymer all follow this basic pattern.
2929

3030
<aside>
31-
<p><a href="blog/frameworks-without-the-framework">Read the introductory blog post</a> if you're new to Svelte. Or <a href="https://twitter.com/padolsey/status/899717303234908160">read</a> <a href="https://twitter.com/sveltejs/status/901818357644701696">the</a> <a href="https://twitter.com/sveltejs/status/901818106309476352">testimonials</a>.</p>
31+
<p><a href="/blog/frameworks-without-the-framework">Read the introductory blog post</a> if you're new to Svelte. Or <a href="https://twitter.com/padolsey/status/899717303234908160">read</a> <a href="https://twitter.com/sveltejs/status/901818357644701696">the</a> <a href="https://twitter.com/sveltejs/status/901818106309476352">testimonials</a>.</p>
3232
</aside>
3333

3434
(For the rest of this article we'll be using Svelte, obviously. But if the idea of using a template language makes you shudder — your fears are misplaced, but that's a topic for another day — then just use Vue which lets you use JSX in your SFCs.)

site/content/blog/2018-12-27-virtual-dom-is-pure-overhead.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Misunderstood claims about virtual DOM performance date back to the launch of Re
4747
> This is actually extremely fast, primarily because most DOM operations tend to be slow. There's been a lot of performance work on the DOM, but most DOM operations tend to drop frames.
4848
4949
<figure>
50-
<img alt="Pete Hunt at JSConfEU 2013" src="media/rethinking-best-practices.jpg">
50+
<img alt="Pete Hunt at JSConfEU 2013" src="/media/rethinking-best-practices.jpg">
5151
<figcaption>Screenshot from <a href="https://www.youtube.com/watch?v=x7cQ3mrcKaY">Rethinking Best Practices</a> at JSConfEU 2013</figcaption>
5252
</figure>
5353

site/content/blog/2020-07-17-svelte-and-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It's been by far the most requested feature for a while, and it's finally here:
1010
We think it'll give you a much nicer development experience — one that also scales beautifully to larger Svelte code bases — regardless of whether you use TypeScript or JavaScript.
1111

1212
<figure>
13-
<img alt="Screenshot of TypeScript in Svelte" src="media/svelte-ts.png">
13+
<img alt="Screenshot of TypeScript in Svelte" src="/media/svelte-ts.png">
1414
<figcaption>Image of TypeScript + Svelte in VS Code (theme is <a href="https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes">Kary Pro</a>.)</figcaption>
1515
</figure>
1616

site/content/examples/05-bindings/11-bind-this/App.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
width: 100%;
5050
height: 100%;
5151
background-color: #666;
52-
-webkit-mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
53-
mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
52+
-webkit-mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
53+
mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
5454
}
55-
</style>
55+
</style>

site/content/tutorial/06-bindings/12-bind-this/app-a/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
width: 100%;
4747
height: 100%;
4848
background-color: #666;
49-
-webkit-mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
50-
mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
49+
-webkit-mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
50+
mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
5151
}
5252
</style>

site/content/tutorial/06-bindings/12-bind-this/app-b/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
width: 100%;
4848
height: 100%;
4949
background-color: #666;
50-
-webkit-mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
51-
mask: url(svelte-logo-mask.svg) 50% 50% no-repeat;
50+
-webkit-mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
51+
mask: url(/svelte-logo-mask.svg) 50% 50% no-repeat;
5252
}
5353
</style>

0 commit comments

Comments
 (0)