Skip to content

Commit e5ad218

Browse files
authored
Merge pull request #185 from ember-learn/feature/fix-netifly-warnings
fixing Netlify warnings
2 parents a2b8c6c + f24d827 commit e5ad218

File tree

96 files changed

+127
-128
lines changed

Some content is hidden

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

96 files changed

+127
-128
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ App.LinkItemComponent = Ember.Component.extend({
159159
Here is an example todo application that shows completed todos with a
160160
red background:
161161

162-
<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>
162+
<a class="jsbin-embed" href="http://jsbin.com/duzala/1/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
163163

164164
**Note:** The binding functionality in this very simple example could also be implemented without
165165
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ component of the same name. Given the above template, you can now use the
3030
{{/each}}
3131
```
3232

33-
<a class="jsbin-embed" href="http://jsbin.com/juvic/embed?js,output">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
33+
<a class="jsbin-embed" href="http://jsbin.com/juvic/embed?js,output">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
3434

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.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ App.PostSummaryComponent = Ember.Component.extend({
3636
}
3737
});
3838
```
39-
<a class="jsbin-embed" href="http://jsbin.com/yuzena/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
39+
<a class="jsbin-embed" href="http://jsbin.com/yuzena/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
4040

4141
The `{{action}}` helper can accept arguments, listen for different event
4242
types, control how action bubbling occurs, and more.

guides/v1.10.0/components/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ To highlight the power of components, here is a short example of turning a blog
2929
application. Keep reading this section for more details on building
3030
components.
3131

32-
<a class="jsbin-embed" href="http://jsbin.com/juvic/embed?js,output">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
32+
<a class="jsbin-embed" href="http://jsbin.com/juvic/embed?js,output">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>

guides/v1.10.0/components/passing-properties-to-a-component.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This will make the `title` property in the outer template scope
4949
available inside the component's template using the same name, `title`.
5050

5151
<a class="jsbin-embed" href="http://jsbin.com/japiv/2/embed?live">JS Bin</a>
52-
<script src="http://static.jsbin.com/js/embed.js"></script>
52+
<script src="https://static.jsbin.com/js/embed.js"></script>
5353

5454
If, in the above example, the model's `title` property was instead
5555
called `name`, we would change the component usage to:
@@ -59,7 +59,7 @@ called `name`, we would change the component usage to:
5959
```
6060

6161
<a class="jsbin-embed" href="http://jsbin.com/japiv/3/embed?live">JS Bin</a>
62-
<script src="http://static.jsbin.com/js/embed.js"></script>
62+
<script src="https://static.jsbin.com/js/embed.js"></script>
6363

6464
In other words, you are binding a named property from the outer scope to
6565
a named property in the component scope, with the syntax
@@ -73,7 +73,7 @@ how they stay in sync.
7373

7474

7575
<a class="jsbin-embed" href="http://jsbin.com/fehewu/embed?live">JS Bin</a>
76-
<script src="http://static.jsbin.com/js/embed.js"></script>
76+
<script src="https://static.jsbin.com/js/embed.js"></script>
7777

7878
You can also bind properties from inside an `{{#each}}` loop. This will
7979
create a component for each item and bind it to each model in the loop.
@@ -84,4 +84,4 @@ create a component for each item and bind it to each model in the loop.
8484
{{/each}}
8585
```
8686
<a class="jsbin-embed" href="http://jsbin.com/yexeyi/embed?live">JS Bin</a>
87-
<script src="http://static.jsbin.com/js/embed.js"></script>
87+
<script src="https://static.jsbin.com/js/embed.js"></script>

guides/v1.10.0/components/sending-actions-from-components-to-your-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Note that we've specified the action to send by setting the component's
149149
`action` attribute, and we've specified which argument should be sent as
150150
a parameter by setting the component's `param` attribute.
151151

152-
<a class="jsbin-embed" href="http://jsbin.com/mucilo/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
152+
<a class="jsbin-embed" href="http://jsbin.com/mucilo/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
153153

154154
### Sending Multiple Actions
155155

@@ -173,7 +173,7 @@ In this case, you can send the `createUser` action by calling
173173
`this.sendAction('submit')`, or send the `cancelUserCreation` action by
174174
calling `this.sendAction('cancel')`.
175175

176-
<a class="jsbin-embed" href="http://jsbin.com/qafaq/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
176+
<a class="jsbin-embed" href="http://jsbin.com/qafaq/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
177177

178178
### Actions That Aren't Specified
179179

guides/v1.10.0/components/wrapping-content-in-a-component.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ in another template:
1818
{{blog-post title=title body=body}}
1919
```
2020

21-
<a class="jsbin-embed" href="http://jsbin.com/cojuk/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
21+
<a class="jsbin-embed" href="http://jsbin.com/cojuk/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
2222

2323
(See [Passing Properties to a
2424
Component](../passing-properties-to-a-component/) for
@@ -62,12 +62,12 @@ form:
6262
{{/blog-post}}
6363
```
6464

65-
<a class="jsbin-embed" href="http://jsbin.com/quyoco/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
65+
<a class="jsbin-embed" href="http://jsbin.com/quyoco/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>
6666

6767
It's important to note that the template scope inside the component
6868
block is the same as outside. If a property is available in the template
6969
outside the component, it is also available inside the component block.
7070

7171
This JSBin illustrates the concept:
7272

73-
<a class="jsbin-embed" href="http://jsbin.com/rewasu/embed?live">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
73+
<a class="jsbin-embed" href="http://jsbin.com/rewasu/embed?live">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>

guides/v1.10.0/cookbook/client_server_interaction/loading_data_from_a_server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ App.User.reopenClass({
8383

8484
#### Example
8585

86-
<a class="jsbin-embed" href="http://jsbin.com/UGuciwo/3/embed?js,output">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
86+
<a class="jsbin-embed" href="http://jsbin.com/UGuciwo/3/embed?js,output">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>

guides/v1.10.0/cookbook/event_handling_and_data_binding/toggling_a_boolean_property.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ obj.toggleProperty('isVisible');
1010

1111
##### Example
1212

13-
<a class="jsbin-embed" href="http://jsbin.com/IxITIXA/1/embed?live,js,output">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
13+
<a class="jsbin-embed" href="http://jsbin.com/IxITIXA/1/embed?live,js,output">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>

guides/v1.10.0/cookbook/helpers_and_components/creating_a_handlebars_helper_to_truncate_text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Ember.Handlebars.helper('truncate', function(str, len) {
2222

2323
#### Example
2424

25-
<a class="jsbin-embed" href="http://jsbin.com/APoDiLA/1/embed?js,output">JS Bin</a><script src="http://static.jsbin.com/js/embed.js"></script>
25+
<a class="jsbin-embed" href="http://jsbin.com/APoDiLA/1/embed?js,output">JS Bin</a><script src="https://static.jsbin.com/js/embed.js"></script>

0 commit comments

Comments
 (0)