Skip to content

Commit 7cbb1d6

Browse files
committed
Updating the last few links with the Jekyll URL
1 parent af1b97d commit 7cbb1d6

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,13 +1086,13 @@ <h4 class="exercise-start">
10861086
<img src="images/chapter4/ios/1.png" alt="Background image on iOS"></p>
10871087
<p>Let’s look at a few other NativeScript modules you can use to help improve the look of this app.</p>
10881088
<h3 id="animations">Animations</h3>
1089-
<p>The ability to run robust and performant animations is the one of the biggest reasons people choose to build native mobile apps, and NativeScript makes running these animations simple. The NativeScript animation modules provides a <a href="{{site.baseurl}}/ui/animation">series of JavaScript APIs</a> that let you perform a wide variety of animations to elements on the screen, including the following:</p>
1089+
<p>The ability to run robust and performant animations is the one of the biggest reasons people choose to build native mobile apps, and NativeScript makes running these animations simple. The NativeScript animation modules provides a <a href="https://docs.nativescript.org/ui/animation">series of JavaScript APIs</a> that let you perform a wide variety of animations to elements on the screen, including the following:</p>
10901090
<ul>
1091-
<li><a href="{{site.baseurl}}/ui/animation#opacity">Opacity</a></li>
1092-
<li><a href="{{site.baseurl}}/ui/animation#background-color">Background Color</a></li>
1093-
<li><a href="{{site.baseurl}}/ui/animation#translate">Translations</a></li>
1094-
<li><a href="{{site.baseurl}}/ui/animation#scale">Scaling</a></li>
1095-
<li><a href="{{site.baseurl}}/ui/animation#rotate">Rotating</a></li>
1091+
<li><a href="https://docs.nativescript.org/ui/animation#opacity">Opacity</a></li>
1092+
<li><a href="https://docs.nativescript.org/ui/animation#background-color">Background Color</a></li>
1093+
<li><a href="https://docs.nativescript.org/ui/animation#translate">Translations</a></li>
1094+
<li><a href="https://docs.nativescript.org/ui/animation#scale">Scaling</a></li>
1095+
<li><a href="https://docs.nativescript.org/ui/animation#rotate">Rotating</a></li>
10961096
</ul>
10971097
<p>Let’s add a simple animation so you can see how they work.</p>
10981098
<h4 class="exercise-start">
@@ -1123,7 +1123,7 @@ <h4 class="exercise-start">
11231123
<blockquote>
11241124
<p><strong>NOTE</strong>: You may notice that the text color is off with the brown background. Don’t worry about that for now; we’ll address that in chapter 6.</p>
11251125
</blockquote>
1126-
<p>The animation module is a lot of fun to play with, and it’s easy to use too. All you need to do is get a reference to an element using <code>getViewById()</code>, and then call that element’s <code>animate()</code> method. You may want to take a few minutes to look through our <a href="{{site.baseurl}}/ui/animation#examples">animation samples</a> and try a few of these animations for yourself in Groceries.</p>
1126+
<p>The animation module is a lot of fun to play with, and it’s easy to use too. All you need to do is get a reference to an element using <code>getViewById()</code>, and then call that element’s <code>animate()</code> method. You may want to take a few minutes to look through our <a href="https://docs.nativescript.org/ui/animation#examples">animation samples</a> and try a few of these animations for yourself in Groceries.</p>
11271127
<p>For now, let’s move on to another commonly used NativeScript UI element: the <code>&lt;ListView&gt;</code>.</p>
11281128
<h3 id="listview">ListView</h3>
11291129
<p>The ListView element lets you show a list of things on the screen, which is exactly what you need for showing a list of groceries. Before tying the grocery list to a backend API, let&#39;s start by seeing how to show a hardcoded list of items on the screen.</p>
@@ -1628,7 +1628,7 @@ <h4 class="exercise-start">
16281628
&lt;ActionItem text=&quot;Share&quot; (tap)=&quot;share()&quot; android.systemIcon=&quot;ic_menu_share_holo_dark&quot; ios.systemIcon=&quot;9&quot; ios.position=&quot;right&quot;&gt;&lt;/ActionItem&gt;
16291629
&lt;/ActionBar&gt;
16301630
</code></pre>
1631-
<p>This code defines an <a href="{{site.baseurl}}/ApiReference/ui/action-bar/ActionBar">ActionBar</a>, which is a UI component that appears on the top of the screen, and which can optionally include menu items, or <a href="http://docs.nativescript.org/ApiReference/ui/action-bar/ActionItem"><code>&lt;ActionItem&gt;</code></a> components.</p>
1631+
<p>This code defines an <a href="https://docs.nativescript.org/ApiReference/ui/action-bar/ActionBar">ActionBar</a>, which is a UI component that appears on the top of the screen, and which can optionally include menu items, or <a href="http://docs.nativescript.org/ApiReference/ui/action-bar/ActionItem"><code>&lt;ActionItem&gt;</code></a> components.</p>
16321632
<blockquote>
16331633
<p><strong>NOTE</strong>: On iOS devices, <code>&lt;ActionItem&gt;</code>s are placed from left to right in sequence; you can override that (as the code above does) by providing an <code>ios.position</code> attribute.</p>
16341634
</blockquote>

src/chapters/chapter4.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ Let’s look at a few other NativeScript modules you can use to help improve the
8585

8686
### Animations
8787

88-
The ability to run robust and performant animations is the one of the biggest reasons people choose to build native mobile apps, and NativeScript makes running these animations simple. The NativeScript animation modules provides a [series of JavaScript APIs]({{site.baseurl}}/ui/animation) that let you perform a wide variety of animations to elements on the screen, including the following:
88+
The ability to run robust and performant animations is the one of the biggest reasons people choose to build native mobile apps, and NativeScript makes running these animations simple. The NativeScript animation modules provides a [series of JavaScript APIs](https://docs.nativescript.org/ui/animation) that let you perform a wide variety of animations to elements on the screen, including the following:
8989

90-
- [Opacity]({{site.baseurl}}/ui/animation#opacity)
91-
- [Background Color]({{site.baseurl}}/ui/animation#background-color)
92-
- [Translations]({{site.baseurl}}/ui/animation#translate)
93-
- [Scaling]({{site.baseurl}}/ui/animation#scale)
94-
- [Rotating]({{site.baseurl}}/ui/animation#rotate)
90+
- [Opacity](https://docs.nativescript.org/ui/animation#opacity)
91+
- [Background Color](https://docs.nativescript.org/ui/animation#background-color)
92+
- [Translations](https://docs.nativescript.org/ui/animation#translate)
93+
- [Scaling](https://docs.nativescript.org/ui/animation#scale)
94+
- [Rotating](https://docs.nativescript.org/ui/animation#rotate)
9595

9696
Lets add a simple animation so you can see how they work.
9797

@@ -134,7 +134,7 @@ One you have a reference to a UI element, you can call any of the methods that e
134134

135135
> **NOTE**: You may notice that the text color is off with the brown background. Dont worry about that for now; well address that in chapter 6.
136136

137-
The animation module is a lot of fun to play with, and its easy to use too. All you need to do is get a reference to an element using `getViewById()`, and then call that elements `animate()` method. You may want to take a few minutes to look through our [animation samples]({{site.baseurl}}/ui/animation#examples) and try a few of these animations for yourself in Groceries.
137+
The animation module is a lot of fun to play with, and its easy to use too. All you need to do is get a reference to an element using `getViewById()`, and then call that elements `animate()` method. You may want to take a few minutes to look through our [animation samples](https://docs.nativescript.org/ui/animation#examples) and try a few of these animations for yourself in Groceries.
138138

139139
For now, lets move on to another commonly used NativeScript UI element: the `<ListView>`.
140140

src/chapters/chapter5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Next you have to build some UI that lets you share a grocery list. To do so, ope
162162
</ActionBar>
163163
```
164164

165-
This code defines an [ActionBar]({{site.baseurl}}/ApiReference/ui/action-bar/ActionBar), which is a UI component that appears on the top of the screen, and which can optionally include menu items, or [`<ActionItem>`](http://docs.nativescript.org/ApiReference/ui/action-bar/ActionItem) components.
165+
This code defines an [ActionBar](https://docs.nativescript.org/ApiReference/ui/action-bar/ActionBar), which is a UI component that appears on the top of the screen, and which can optionally include menu items, or [`<ActionItem>`](http://docs.nativescript.org/ApiReference/ui/action-bar/ActionItem) components.
166166

167167
> **NOTE**: On iOS devices, `<ActionItem>`s are placed from left to right in sequence; you can override that (as the code above does) by providing an `ios.position` attribute.
168168

0 commit comments

Comments
 (0)