Skip to content

Commit b1363e9

Browse files
mansonalocks
authored andcommitted
fixing all image links (because of new trailing slash issue) (#16)
1 parent 26db2fc commit b1363e9

File tree

183 files changed

+347
-346
lines changed

Some content is hidden

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

183 files changed

+347
-346
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.DS_Store
2+
node_modules

guides/v1.12.0/ember-inspector/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If the inspector cannot detect an Ember application, you will see
88
the following message:
99

1010
<img
11-
src="../../images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
11+
src="/images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
1212

1313
Some of the reasons this happens:
1414

guides/v1.13.0/ember-inspector/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If the inspector cannot detect an Ember application, you will see
88
the following message:
99

1010
<img
11-
src="../../images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
11+
src="/images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
1212

1313
Some of the reasons this happens:
1414

guides/v2.0.0/ember-inspector/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If the Inspector cannot detect an Ember application, you will see
88
the following message:
99

1010
<img
11-
src="../../images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
11+
src="/images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
1212

1313
Some of the reasons this may happen:
1414

guides/v2.1.0/ember-inspector/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If the Inspector cannot detect an Ember application, you will see
88
the following message:
99

1010
<img
11-
src="../../images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
11+
src="/images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
1212

1313
Some of the reasons this may happen:
1414

guides/v2.10.0/configuring-ember/handling-deprecations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ changes to the framework. Before any functionality or API is removed it first g
33
still supported, but usage of it generates a warning logged to the browser console. These warnings can pile up between major releases to a point where the amount of
44
deprecation warnings that scroll through the console becomes overwhelming.
55

6-
<img width="675px" title="Deprecations Clouding up the Browser JavaScript Console" src="../../images/guides/configuring-ember/handling-deprecations/deprecations-in-console.png"/>
6+
<img width="675px" title="Deprecations Clouding up the Browser JavaScript Console" src="/images/guides/configuring-ember/handling-deprecations/deprecations-in-console.png"/>
77

88
Fortunately, Ember provides a way for projects to deal with deprecations in an organized and efficient manner.
99

@@ -47,7 +47,7 @@ manually exercise functionality within your app where needed. Once you've exerc
4747
your browser console: `deprecationWorkflow.flushDeprecations()`. This will print to the console JavaScript code, which you should then copy to a
4848
new file in your project called `/config/deprecation-workflow.js`
4949

50-
<img width="675px" title="Generated Deprecation Code from Browser Console" src="../../images/guides/configuring-ember/handling-deprecations/generate-deprecation-code.png"/>
50+
<img width="675px" title="Generated Deprecation Code from Browser Console" src="/images/guides/configuring-ember/handling-deprecations/generate-deprecation-code.png"/>
5151

5252
Here's an example of a deprecation-workflow file after generated from the console:
5353

@@ -108,7 +108,7 @@ window.deprecationWorkflow.config = {
108108
]
109109
};
110110
```
111-
<img width="675px" src="../../images/guides/configuring-ember/handling-deprecations/failed-test-from-deprecation.png"/>
111+
<img width="675px" src="/images/guides/configuring-ember/handling-deprecations/failed-test-from-deprecation.png"/>
112112

113113

114114
### 3. Fix and Repeat
@@ -125,7 +125,7 @@ so that you can start the process over for the next release.
125125
As you upgrade between releases, you might also notice that your terminal log begins to stream template-related deprecation warnings during the compile process, making
126126
it difficult to review your compilation logs.
127127

128-
<img width="675px" src="../../images/guides/configuring-ember/handling-deprecations/compile-deprecations.png" title="Compile Deprecations Clouding Log"/>
128+
<img width="675px" src="/images/guides/configuring-ember/handling-deprecations/compile-deprecations.png" title="Compile Deprecations Clouding Log"/>
129129

130130
If you are using the deprecation workflow process above, you will likely prefer to gather these warnings during runtime execution instead. The way to hide these
131131
warnings during compile is to install the [ember-cli-template-lint](http://emberobserver.com/addons/ember-cli-template-lint) addon. It suppresses

guides/v2.10.0/ember-inspector/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If the Inspector cannot detect an Ember application, you will see
88
the following message:
99

1010
<img
11-
src="../../images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
11+
src="/images/guides/ember-inspector/troubleshooting-application-not-detected.png" width="350">
1212

1313
Some of the reasons this may happen:
1414

guides/v2.10.0/getting-started/core-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Before you start writing any Ember code, it's a good idea to get an overview of how an
22
Ember application works.
33

4-
![ember core concepts](../../images/ember-core-concepts/ember-core-concepts.png)
4+
![ember core concepts](/images/ember-core-concepts/ember-core-concepts.png)
55

66
## Router and Route Handlers
77
Imagine we are writing a web app for a site that lets users list their properties to rent. At any given time, we should be able to answer questions about the current state like _What rental are they looking at?_ and _Are they editing it?_ In Ember, the answer to these questions is determined by the URL.

guides/v2.10.0/tutorial/acceptance-test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ It will start with a homepage, an about page and a contact page.
33

44
Here's a look at the desired application before we get started.
55

6-
![super rentals homepage screenshot](../../images/service/style-super-rentals-maps.png)
6+
![super rentals homepage screenshot](/images/service/style-super-rentals-maps.png)
77

88
Let's think through what we want to do on the home page of our Super Rentals application.
99

@@ -178,7 +178,7 @@ test('should show details for a specific rental', function (assert) {
178178
Of course because we have not implemented this functionality yet, our tests will all fail.
179179
So, your test output should now show all failed tests when running `ember test --server`, which gives us a todo list for the rest of the tutorial.
180180
181-
![failing tests](../../images/acceptance-test/failed-acceptance-tests.png)
181+
![failing tests](/images/acceptance-test/failed-acceptance-tests.png)
182182
183183
As we walk through the tutorial, we'll use our acceptance tests as a checklist of functionality.
184184
When all are green, we've accomplished our high level goals!

guides/v2.10.0/tutorial/autocomplete-component.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ export default function() {
262262

263263
After updating our mirage configuration, we should see passing tests, as well as a simple filter on your home screen, that will update the rental list as you type:
264264

265-
![home screen with filter component](../../images/autocomplete-component/styled-super-rentals-filter.png)
265+
![home screen with filter component](/images/autocomplete-component/styled-super-rentals-filter.png)
266266

267-
![passing acceptance tests](../../images/autocomplete-component/passing-acceptance-tests.png)
267+
![passing acceptance tests](/images/autocomplete-component/passing-acceptance-tests.png)

0 commit comments

Comments
 (0)