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

Commit a144c1c

Browse files
gkalpakpetebacondarwin
authored andcommitted
docs(guide/migration): add "Migrate 1.5 to 1.6" section
Closes #15399
1 parent d79f9b3 commit a144c1c

File tree

2 files changed

+1132
-4
lines changed

2 files changed

+1132
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ appModule.config(['$sceDelegateProvider', function($sceDelegateProvider) {
526526
```
527527

528528
**Explicitly trusting the URL via the `$sce.trustAsResourceUrl(url)`
529-
method**
529+
method.**
530530

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

605605
```html
606606
<form ng-model-options="{updateOn: 'blur'}">
607-
<input ng-model="...">
607+
<input ng-model="..." ng-model-options="{allowInvalid: true}">
608608
</form>
609609
```
610610

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

616616
```html
617617
<form ng-model-options="{updateOn: 'blur'}">
618-
<input ng-model="..." ng-model-options="{updateOn: 'default'}">
618+
<input ng-model="..." ng-model-options="{updateOn: 'default', allowInvalid: true}">
619619
</form>
620620
```
621621

@@ -886,7 +886,7 @@ directive attributes).
886886

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

891891
Before:
892892

0 commit comments

Comments
 (0)