Skip to content

Commit 9080669

Browse files
authored
Merge pull request #15 from ember-learn/feature/link-checker-ci
Feature/link checker ci
2 parents bc7699b + b1f7e6d commit 9080669

File tree

408 files changed

+2824
-934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

408 files changed

+2824
-934
lines changed

.eslintrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"mocha": true
5+
},
6+
"parserOptions": {
7+
"ecmaVersion": 6
8+
},
9+
"rules": {
10+
"func-names": 0,
11+
"prefer-arrow-callback": 0,
12+
"no-unused-expressions": 0
13+
},
14+
"extends": "airbnb-base"
15+
}

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
node_js:
3+
- '8'
4+
5+
env:
6+
global:
7+
- secure: "uh/i3/82ECzpG2ozoEpRsvdMO9o2WG8KSR4csIIDNB9kIxsvacB1xfrOStj6HM1XCTwZgcGa6zLG0rjvdZqNTFZOGT75u7mVJ7hJsReGi6rCncSNmxdWC6KUZw5LxO4Sm+G10F+ysUcdBhiW8UdeLrNTNw75DOCC3U28HWtO84/DsIzZNRgZjzLzOMGEr3E28VJvEZx6znRJyDujb57y3QCER5AE83dQ+t+Wmn0L+vG78q5waO6qSFK2Aib3bpNw57duRwALwaErRAWfi3pBzFf/WjnRGoAXnXBjKI7GRoNOxSTq0MgzE0SZHfF4jb3uplxtAL9T0I1QSp4wkjBU21OzKcYI8sznQq9sUwPyyB98ASvLYpfZEkxBsC1IAvhHBFXIqP8CcLef8nfNdEuHW11KpDdjc0X+zSzH5bj2Ske0Ip2OHmARsLQawQELneNNelYoUmMMuJTy7HtPcX925S0Z2YWjIWja1xQjfWR8Be1ReUYVEYoYyCkttMe6Qa9hobdf+Yy3dwAwIpZUZX+ZPw68TzkQdjNWSC9Nn8Su1yGnyzgOwd4kBNmiluvjcYhKU82x0I025e3zEsHR3jVbuu/KrnVOtSfqFimPbtL1oUeR5e1Yg6fFF8sbnSXeR3lCXpQFXrv9OowvbWqD4lhCUwE3Jovx5QOVZwubL1EScyo="
8+
9+
deploy:
10+
provider: script
11+
script: notify-guides-app.sh
12+
# on:
13+
# branch: master

guides/v1.10.0/application/index.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ What does creating an `Ember.Application` instance get you?
1818
`App.PostsView` and `App.PostsController`). This helps to prevent
1919
polluting the global scope.
2020
2. It adds event listeners to the document and is responsible for
21-
delegating events to your views. (See [The View
22-
Layer](../understanding-ember/the-view-layer)
21+
delegating events to your views. (See [The View Layer](../understanding-ember/the-view-layer/)
2322
for a detailed description.)
24-
3. It automatically renders the [application
25-
template](../templates/the-application-template).
23+
3. It automatically renders the [application template](../templates/the-application-template/).
2624
4. It automatically creates a router and begins routing, choosing which
2725
template and model to display based on the current URL.

guides/v1.10.0/components/customizing-a-components-element.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ red background:
162162
<a class="jsbin-embed" href="http://jsbin.com/duzala/1/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
163163

164164
**Note:** The binding functionality in this very simple example could also be implemented without
165-
the use of `Ember.Component` but by simply [binding element attributes](../../templates/binding-element-attributes) or [binding element class names](../../templates/binding-element-class-names).
165+
the use of `Ember.Component` but by simply [binding element attributes](../../templates/binding-element-attributes/) or [binding element class names](../../templates/binding-element-class-names/).

guides/v1.10.0/components/defining-a-component.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ component of the same name. Given the above template, you can now use the
3535
Each component, under the hood, is backed by an element. By default
3636
Ember will use a `<div>` element to contain your component's template.
3737
To learn how to change the element Ember uses for your component, see
38-
[Customizing a Component's
39-
Element](../customizing-a-components-element).
38+
[Customizing a Component's Element](../customizing-a-components-element/).
4039

4140

4241
### Defining a Component Subclass

guides/v1.10.0/components/handling-user-interaction-with-actions.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ users of your application to interact with it.
77

88
You can make elements in your component interactive by using the
99
`{{action}}` helper. This is the [same `{{action}}` helper you use in
10-
application templates](../../templates/actions), but it has an
10+
[application templates](../../templates/actions/), but it has an
1111
important difference when used inside a component.
1212

1313
Instead of sending an action to the template's controller, then bubbling
@@ -41,5 +41,4 @@ App.PostSummaryComponent = Ember.Component.extend({
4141
The `{{action}}` helper can accept arguments, listen for different event
4242
types, control how action bubbling occurs, and more.
4343

44-
For details about using the `{{action}}` helper, see the [Actions
45-
section](../../templates/actions) of the Templates chapter.
44+
For details about using the `{{action}}` helper, see the [Actions section](../../templates/actions/) of the Templates chapter.

guides/v1.10.0/configuring-ember/embedding-applications.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ existing page, or run alongside other JavaScript frameworks?
66

77
### Changing the Root Element
88

9-
By default, your application will render the [application
10-
template](../../templates/the-application-template) and attach it to
9+
By default, your application will render the [application template](../../templates/the-application-template/) and attach it to
1110
the document's `body` element.
1211

1312
You can tell the application to append the application template to a
@@ -20,13 +19,11 @@ App = Ember.Application.create({
2019
```
2120

2221
This property can be specified as either an element or a
23-
[jQuery-compatible selector
24-
string](http://api.jquery.com/category/selectors/).
22+
[jQuery-compatible selector string](http://api.jquery.com/category/selectors/).
2523

2624
### Disabling URL Management
2725

28-
You can prevent Ember from making changes to the URL by [changing the
29-
router's `location`](../../routing/specifying-the-location-api) to
26+
You can prevent Ember from making changes to the URL by [changing the router's `location`](../../routing/specifying-the-location-api/) to
3027
`none`:
3128

3229
```javascript

guides/v1.10.0/controllers/dependencies-between-controllers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ App.AnotherController = Ember.Controller.extend({
6060
```
6161

6262
For more information about dependecy injection and `needs` in Ember.js,
63-
see the [dependency injection guide](../../understanding-ember/dependency-injection-and-service-lookup).
63+
see the [dependency injection guide](../../understanding-ember/dependency-injection-and-service-lookup/).
6464
For more information about aliases, see the API docs for
6565
[aliased properties](http://emberjs.com/api/#method_computed_alias).

guides/v1.10.0/cookbook/user_interface_and_interaction/adding_css_classes_to_your_components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ classNames: ['bold', 'italic', 'blue']
3232

3333
<a class="jsbin-embed" href="http://emberjs.jsbin.com/ifUDExu/2/edit?js,output">JS Bin</a>
3434

35-
See [Customizing a Component's Element](../../components/customizing-a-components-element/) for further examples.
35+
See [Customizing a Component's Element](../../../components/customizing-a-components-element/) for further examples.

guides/v1.10.0/cookbook/user_interface_and_interaction/adding_css_classes_to_your_components_based_on_properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ isRelatedBinding: "content.isRelated" // value resolves to boolean
3333

3434
<a class="jsbin-embed" href="http://emberjs.jsbin.com/AwAYUwe/2/edit?js,output">JS Bin</a>
3535

36-
See [Customizing a Component's Element](../../components/customizing-a-components-element/) for further examples.
36+
See [Customizing a Component's Element](../../../components/customizing-a-components-element/) for further examples.

0 commit comments

Comments
 (0)