Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

WIP - docs(guide/migration): add "Migrate 1.5 to 1.6" section #15399

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ appModule.config(['$sceDelegateProvider', function($sceDelegateProvider) {
```

**Explicitly trusting the URL via the `$sce.trustAsResourceUrl(url)`
method**
method.**

You can pass a trusted object instead of a string as a URL to the `$http`
service:
Expand Down Expand Up @@ -604,7 +604,7 @@ For example if you had the following HTML:

```html
<form ng-model-options="{updateOn: 'blur'}">
<input ng-model="...">
<input ng-model="..." ng-model-options="{allowInvalid: true}">
</form>
```

Expand All @@ -615,7 +615,7 @@ on the input as well:

```html
<form ng-model-options="{updateOn: 'blur'}">
<input ng-model="..." ng-model-options="{updateOn: 'default'}">
<input ng-model="..." ng-model-options="{updateOn: 'default', allowInvalid: true}">
</form>
```

Expand Down Expand Up @@ -886,7 +886,7 @@ directive attributes).

All owned properties of the `params` object that are not used to replace URL params, will be passed
to `$http` as `config.params` (to be used as query parameters in the URL), even if
`Object.prototype` has a property with same name. E.g.:
`Object.prototype` has a property with the same name. E.g.:

Before:

Expand Down
Loading