Skip to content

Commit 081948b

Browse files
author
Jessica Lord
committed
Merge pull request electron#140 from electron/add-missing-links
add missing links to intro page
2 parents fe823ac + a731928 commit 081948b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sections/about.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
<main class="about-sections">
88
<section class="about-section play-along">
99
<h2>Play Along</h2>
10-
<p>Use the demo snippets in an Electron app of your own. The <a href="" class="u-exlink">Electron Quick Start</a> app is a bare-bones setup that pairs with these demos. Follow the instructions here to get it going. You'll need <a href="" class="u-exlink">Git</a> and <a href="" class="u-exlink">Node.js</a> on your computer to do this.</p>
10+
<p>Use the demo snippets in an Electron app of your own. The <a href="https://github.com/electron/electron-quick-start" class="u-exlink">Electron Quick Start</a> app is a bare-bones setup that pairs with these demos. Follow the instructions here to get it going. You'll need <a href="https://desktop.github.com/" class="u-exlink">Git</a> and <a href="https://nodejs.org/" class="u-exlink">Node.js</a> on your computer to do this.</p>
1111
<pre><code>$ git clone https://github.com/atom/electron-quick-start
1212
$ cd electron-quick-start
1313
$ npm install && npm start
1414
</code></pre>
1515
</section>
1616
<section class="about-section about-code">
1717
<h2>About the Code</h2>
18-
<p>The <a href="" class="u-exlink">source code of this app</a> has been organized with ease of navigation in mind.</p>
18+
<p>The <a href="https://github.com/electron/electron-api-demos" class="u-exlink">source code of this app</a> has been organized with ease of navigation in mind.</p>
1919

20-
<p>Nearly all (over 90%) of <a href="" class="u-exlink">ES2015</a> is availble to use in Electron <em>without the use of pre-processors</em> because it's a part of <a href="" class="u-exlink">V8</a> which is built into Electron.</p>
20+
<p>Nearly all (over 90%) of <a href="http://babeljs.io/docs/learn-es2015/" class="u-exlink">ES2015</a> is availble to use in Electron <em>without the use of pre-processors</em> because it's a part of <a href="https://developers.google.com/v8/" class="u-exlink">V8</a> which is built into Electron.</p>
2121

2222
<p>To illustrate this we've made use of <code>const</code>, for un changing declarations; <code>let</code> for scoped declarations; and template strings like: <code>`Result is ${output}`</code> in the demo snippets.</p>
2323
</section>

0 commit comments

Comments
 (0)