@@ -86,7 +86,7 @@ Please read the [Sandbox Removal Blog Post](http://angularjs.blogspot.com/2016/0
86
86
## Breaking Changes
87
87
88
88
### **jqLite** due to:
89
- - **[fc0c11](https://github.com/angular/angular.js/commit/fc0c11db845d53061430b7f05e773dcb3fb5b860)) **: camelCase keys in `jqLite#data`
89
+ - **[fc0c11](https://github.com/angular/angular.js/commit/fc0c11db845d53061430b7f05e773dcb3fb5b860)**: camelCase keys in `jqLite#data`
90
90
91
91
Previously, keys passed to the data method were left untouched.
92
92
Now they are internally camelCased similarly to how jQuery handles it, i.e.
@@ -302,7 +302,7 @@ JavaScript:
302
302
- **[7bc71a](https://github.com/angular/angular.js/commit/7bc71adc63bb6bb609b44dd2d3ea8fb0cd3f300b)**: treat synchronous validators as boolean always
303
303
304
304
Previously, only a literal `false` return would resolve as the
305
- synchronous validator failing. Now, all traditionally false JavaScript values
305
+ synchronous validator failing. Now, all falsy JavaScript values
306
306
are treated as failing the validator, as one would naturally expect.
307
307
308
308
Specifically, the values `0` (the number zero), `null`, `NaN` and `''` (the
@@ -903,7 +903,7 @@ After:
903
903
```js
904
904
var Foo = $resource('/foo/:id');
905
905
Foo.get({id: 42, bar: 'baz', toString: 'hmm'});
906
- // URL: /foo/42?bar=baz& toString=hmm
906
+ // URL: /foo/42?bar=baz&toString=hmm
907
907
// Note that `toString` _is_ included in the query, as expected :)
908
908
```
909
909
0 commit comments