Skip to content

Commit c191b1a

Browse files
committed
Updating image paths
1 parent f6409be commit c191b1a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
File renamed without changes.
File renamed without changes.

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ <h2 id="building-apps-with-nativescript-and-angular-2">Building Apps with Native
3434
</blockquote>
3535
<h3 id="what-is-nativescript-what-is-angular-2-">What is NativeScript? What is Angular 2?</h3>
3636
<div class="intro-box">
37-
<img src="images/NativeScript_logo.png" class="plain" alt="NativeScript logo">
37+
<img src="images/chapter0/NativeScript_logo.png" class="plain" alt="NativeScript logo">
3838
<p><a href="https://www.nativescript.org/">NativeScript</a> is a framework for building native iOS and Android apps using JavaScript and CSS. NativeScript renders UIs with the native platform’s rendering engine—no <a href="http://developer.telerik.com/featured/what-is-a-webview/">WebViews</a>—resulting in native-like performance and UX.</p>
3939
</div>
4040

4141
<div class="intro-box">
42-
<img src="images/Angular_logo.png" class="plain" alt="Angular logo">
42+
<img src="images/chapter0/Angular_logo.png" class="plain" alt="Angular logo">
4343
<p><a href="https://angularjs.org/">Angular JS</a> is one of the most popular open source JavaScript frameworks for application development. The latest version of Angular, <a href="https://angular.io/">Angular 2</a>, makes it possible to use Angular outside of a web browser, and developers at <a href="http://www.telerik.com/">Telerik</a> (the company that created and maintains NativeScript) <a href="https://docs.google.com/document/d/1J6fZcVbVa6uONVCJIox2A3Jn5TWgspLufmryfA1OXGk/edit#heading=h.trgonlvb0z3j">have been working closely with developers at Google</a> to make Angular 2 in NativeScript a reality.</p>
4444
</div>
4545

4646
<div class="intro-box">
47-
<img src="images/NativeScript_Angular_logo.png" class="plain" alt="Angular logo">
47+
<img src="images/chapter0/NativeScript_Angular_logo.png" class="plain" alt="Angular logo">
4848
<p>The result is a software architecture that allows you to build mobile apps using the same framework—and in some cases the same code—that you use to build Angular 2 web apps, with the performance you’d expect from native code. Let’s look at how it all works by building an app.</p>
4949
</div>
5050

@@ -935,7 +935,7 @@ <h4 class="exercise-start">
935935
template: &quot;&lt;page-router-outlet&gt;&lt;/page-router-outlet&gt;&quot;
936936
})
937937
@RouteConfig([
938-
{ path: &quot;/Login&quot;, component: LoginPage, as: &quot;Login&quot;, useAsDefault: true },
938+
{ path: &quot;/Login&quot;, component: LoginPage, name: &quot;Login&quot;, useAsDefault: true },
939939
])
940940
export class AppComponent {}
941941
</code></pre>
@@ -969,8 +969,8 @@ <h4 class="exercise-start">
969969
</code></pre>
970970
<p>Next, replace the existing <code>@RouteConfig</code> with the following code so that it includes this new list page:</p>
971971
<pre><code class="lang-TypeScript">@RouteConfig([
972-
{ path: &quot;/Login&quot;, component: LoginPage, as: &quot;Login&quot;, useAsDefault: true },
973-
{ path: &quot;/List&quot;, component: ListPage, as: &quot;List&quot; }
972+
{ path: &quot;/Login&quot;, component: LoginPage, name: &quot;Login&quot;, useAsDefault: true },
973+
{ path: &quot;/List&quot;, component: ListPage, name: &quot;List&quot; }
974974
])
975975
</code></pre>
976976
<p>Angular 2 now knows about the list page, but we still need to navigate the user to that page at the appropriate time. Our next step is to allow users to log into their accounts, and to take navigate them to the new list page after they successfully authenticate.</p>

src/chapters/chapter0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ Welcome to the NativeScript & Angular 2 getting started guide 📚. In this hand
77
### What is NativeScript? What is Angular 2?
88

99
<div class="intro-box">
10-
<img src="images/NativeScript_logo.png" class="plain" alt="NativeScript logo">
10+
<img src="images/chapter0/NativeScript_logo.png" class="plain" alt="NativeScript logo">
1111
<p>[NativeScript](https://www.nativescript.org/) is a framework for building native iOS and Android apps using JavaScript and CSS. NativeScript renders UIs with the native platform’s rendering engine—no [WebViews](http://developer.telerik.com/featured/what-is-a-webview/)—resulting in native-like performance and UX.</p>
1212
</div>
1313

1414
<div class="intro-box">
15-
<img src="images/Angular_logo.png" class="plain" alt="Angular logo">
15+
<img src="images/chapter0/Angular_logo.png" class="plain" alt="Angular logo">
1616
<p>[Angular JS](https://angularjs.org/) is one of the most popular open source JavaScript frameworks for application development. The latest version of Angular, [Angular 2](https://angular.io/), makes it possible to use Angular outside of a web browser, and developers at [Telerik](http://www.telerik.com/) (the company that created and maintains NativeScript) [have been working closely with developers at Google](https://docs.google.com/document/d/1J6fZcVbVa6uONVCJIox2A3Jn5TWgspLufmryfA1OXGk/edit#heading=h.trgonlvb0z3j) to make Angular 2 in NativeScript a reality.</p>
1717
</div>
1818

1919
<div class="intro-box">
20-
<img src="images/NativeScript_Angular_logo.png" class="plain" alt="Angular logo">
20+
<img src="images/chapter0/NativeScript_Angular_logo.png" class="plain" alt="Angular logo">
2121
<p>The result is a software architecture that allows you to build mobile apps using the same framework—and in some cases the same code—that you use to build Angular 2 web apps, with the performance you’d expect from native code. Let’s look at how it all works by building an app.</p>
2222
</div>
2323

0 commit comments

Comments
 (0)