Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 22383d4

Browse files
committed
docs(update): update examples to alpha-23 and small fixes from Jeff
1 parent daa80db commit 22383d4

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

public/docs/js/latest/guide/displaying-data.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
.l-main-section
2222
h2#section-create-an-entry-point Create an entry point
2323

24-
p Open your favorite editor and create a show-properties.html file with the content:
24+
p Open your favorite editor and create a <code>show-properties.html</code> file with the content:
2525

2626
code-example(language="html" escape="html").
2727
<display></display>

public/docs/js/latest/guide/setup.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
&lt;html&gt;
4646
&lt;head&gt;
4747
&lt;script src=&quot;https://jspm.io/[email protected]&quot;&gt;&lt;/script&gt;
48-
&lt;script src=&quot;https://code.angularjs.org/2.0.0-alpha.22/angular2.dev.js&quot;&gt;&lt;/script&gt;
48+
&lt;script src=&quot;https://code.angularjs.org/2.0.0-alpha.23/angular2.dev.js&quot;&gt;&lt;/script&gt;
4949
&lt;/head&gt;
5050
&lt;body&gt;
5151
&lt;my-app&gt;&lt;/my-app&gt;
@@ -59,7 +59,7 @@
5959
&lt;!DOCTYPE html&gt;
6060
&lt;html&gt;
6161
&lt;head&gt;
62-
&lt;script src=&quot;https://code.angularjs.org/2.0.0-alpha.22/angular2.sfx.dev.js&quot;&gt;&lt;/script&gt;
62+
&lt;script src=&quot;https://code.angularjs.org/2.0.0-alpha.23/angular2.sfx.dev.js&quot;&gt;&lt;/script&gt;
6363
&lt;script src=&quot;main.js&quot;&gt;&lt;/script&gt;
6464
&lt;/head&gt;
6565
&lt;body&gt;

public/docs/js/latest/guide/user-input.jade

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414
As in previous examples, you can make element references available to other parts of the template as a local
1515
variable using the <code>#var</code> syntax. With this and events, we can do the old "update text as you type" example:
1616

17-
.callout.is-helpful
18-
header Broken Example
19-
p
20-
span This specific example is currently broken, pending resolution of&nbsp;
21-
a(href="https://github.com/angular/angular/issues/2019") 2019
22-
2317
code-example(language="html").
2418
&lt;input #myname (keyup)&gt;
2519
&lt;p&gt;{{myname.value}}&lt;/p&gt;

public/docs/js/latest/quickstart.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
&lt;head&gt;
182182
&lt;title&gt;Angular 2 Quickstart&lt;/title&gt;
183183
&lt;script src="https://github.jspm.io/jmcriffey/[email protected]/traceur-runtime.js"&gt;&lt;/script&gt;
184-
&lt;script src="https://code.angularjs.org/2.0.0-alpha.%3Cspan%20class="x x-first x-last">22/angular2.dev.js"&gt;&lt;/script&gt;
184+
&lt;script src="https://code.angularjs.org/2.0.0-alpha.%3Cspan%20class="x x-first x-last">23/angular2.dev.js"&gt;&lt;/script&gt;
185185
&lt;/head&gt;
186186
&lt;body&gt;
187187

@@ -216,7 +216,7 @@
216216
&lt;title&gt;Angular 2 Quickstart&lt;/title&gt;
217217
&lt;script src="https://github.jspm.io/jmcriffey/[email protected]/traceur-runtime.js"&gt;&lt;/script&gt;
218218
&lt;script src="https://jspm.io/[email protected]"&gt;&lt;/script&gt;
219-
&lt;script src="https://code.angularjs.org/2.0.0-alpha.%3Cspan%20class="x x-first x-last">22/angular2.dev.js"&gt;&lt;/script&gt;
219+
&lt;script src="https://code.angularjs.org/2.0.0-alpha.%3Cspan%20class="x x-first x-last">23/angular2.dev.js"&gt;&lt;/script&gt;
220220
&lt;/head&gt;
221221

222222
p.

0 commit comments

Comments
 (0)