You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Protractor diagram included in this repository was adapted from the original located at _[http://angular.github.io/protractor/img/components.png](http://angular.github.io/protractor/img/components.png)_ Many thanks to the Protractor team for creating this tool and the accompanying documentation.
3
+
The Protractor diagram included in this repository was adapted from the original located at _[https://angular.github.io/protractor/img/components.png](https://angular.github.io/protractor/img/components.png)_ Many thanks to the Protractor team for creating this tool and the accompanying documentation.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,4 @@
2
2
3
3
The documentation for Aurelia.
4
4
5
-
> To keep up to date on [Aurelia](http://www.aurelia.io/), please visit and subscribe to [the official blog](http://blog.aurelia.io/) and [our email list](http://eepurl.com/ces50j). We also invite you to [follow us on twitter](https://twitter.com/aureliaeffect). If you have questions, please [join our community on Gitter](https://gitter.im/aurelia/discuss) or use [stack overflow](http://stackoverflow.com/search?q=aurelia). The built form of this documentation can be found [in our developer hub](http://aurelia.io/docs).
5
+
> To keep up to date on [Aurelia](https://www.aurelia.io/), please visit and subscribe to [the official blog](https://blog.aurelia.io/) and [our email list](https://eepurl.com/ces50j). We also invite you to [follow us on twitter](https://twitter.com/aureliaeffect). If you have questions, please [join our community on Gitter](https://gitter.im/aurelia/discuss) or use [stack overflow](https://stackoverflow.com/search?q=aurelia). The built form of this documentation can be found [in our developer hub](https://aurelia.io/docs).
By default, Aurelia uses ES6 native Promises or a polyfill. However, you can replace this with the excellent [Bluebird](https://github.com/petkaantonov/bluebird) Promise library. Simply include it in your page before you reference the other scripts. It will provide its own standards-compliant Promise implementation which is currently faster than native and has better debugging support. Additionally, when used in combination with the Babel transpiler, you can use [coroutines](http://babeljs.io/docs/usage/transformers/other/bluebird-coroutines/) for improved async code.
97
+
By default, Aurelia uses ES6 native Promises or a polyfill. However, you can replace this with the excellent [Bluebird](https://github.com/petkaantonov/bluebird) Promise library. Simply include it in your page before you reference the other scripts. It will provide its own standards-compliant Promise implementation which is currently faster than native and has better debugging support. Additionally, when used in combination with the Babel transpiler, you can use [coroutines](https://babeljs.io/docs/usage/transformers/other/bluebird-coroutines/) for improved async code.
Aurelia has an adaptive binding system that chooses from a number of strategies when determining how to most efficiently observe changes. For more info on how this works checkout [this post](http://blog.durandal.io/2015/04/03/aurelia-adaptive-binding/). For the most part you don't need to think about these details however it does help to be aware of scenarios that lead to inefficient use of the binding system.
702
+
Aurelia has an adaptive binding system that chooses from a number of strategies when determining how to most efficiently observe changes. For more info on how this works checkout [this post](https://blog.durandal.io/2015/04/03/aurelia-adaptive-binding/). For the most part you don't need to think about these details however it does help to be aware of scenarios that lead to inefficient use of the binding system.
703
703
704
704
**The #1 thing to be aware of is that computed properties (properties with getter functions) are observed using dirty-checking.** More efficient strategies such as Object.observe and property rewriting are not compatible with these types of properties.
705
705
@@ -783,7 +783,7 @@ export class IssueSearch {
783
783
784
784
In addition to databinding, you also have the power of Aurelia's HTML extensions. There are two types:
785
785
786
-
* Custom Elements - Extend HTML with new tags! Your custom elements can have their own views (which use databinding and other html extensions) and optionally leverage [ShadowDOM](http://www.html5rocks.com/en/tutorials/webcomponents/shadowdom/) (even if the browser doesn't support it).
786
+
* Custom Elements - Extend HTML with new tags! Your custom elements can have their own views (which use databinding and other html extensions) and optionally leverage [ShadowDOM](https://www.html5rocks.com/en/tutorials/webcomponents/shadowdom/) (even if the browser doesn't support it).
787
787
* Custom Attributes - Extend HTML with new attributes which can be added to existing or custom elements. These attributes add new behavior to the elements.
788
788
789
789
Naturally, all of this works seamlessly with databinding. Let's look at the set of Custom Elements and Attributes that Aurelia provides for you and which are available globally in every view.
Note that with the above you will be forced to use a Razor view file. If you want to use a regular HTML file, there are different ways to do it. [This SO article might help you](http://stackoverflow.com/questions/20871938/render-html-file-in-asp-net-mvc-view).
1133
+
Note that with the above you will be forced to use a Razor view file. If you want to use a regular HTML file, there are different ways to do it. [This SO article might help you](https://stackoverflow.com/questions/20871938/render-html-file-in-asp-net-mvc-view).
1134
1134
1135
-
If you are using [Nancy FX](http://nancyfx.org), then the config is just as simple. Locate your `IndexModule.cs` or whatever you called it and make sure it looks something like this and all will be well:
1135
+
If you are using [Nancy FX](https://nancyfx.org), then the config is just as simple. Locate your `IndexModule.cs` or whatever you called it and make sure it looks something like this and all will be well:
1136
1136
1137
1137
``` csharp
1138
1138
publicclassIndexModule: NancyModule {
@@ -1829,21 +1829,21 @@ There are two other apis that are worth noting. You can use `configure` to acces
1829
1829
```javascript
1830
1830
var client =newHttpClient()
1831
1831
.configure(x=> {
1832
-
x.withBaseUrl('http://aurelia.io');
1832
+
x.withBaseUrl('https://aurelia.io');
1833
1833
x.withHeader('Authorization', 'bearer 123');
1834
1834
});
1835
1835
1836
1836
client.get('some/cool/path');
1837
1837
```
1838
1838
1839
-
In this case, all requests from the client will have the baseUrl of 'http://aurelia.io' and will have the specified Authorization header. The same API is available via the request builder. So, you can accomplish the same thing on an individual request like this:
1839
+
In this case, all requests from the client will have the baseUrl of 'https://aurelia.io' and will have the specified Authorization header. The same API is available via the request builder. So, you can accomplish the same thing on an individual request like this:
0 commit comments