| Age | Commit message (Collapse) | Author | 
 | 
 | 
 | 
Previously an element like
<div class="foo ng-cloak">...</div>
would still be annoyingly visible if it matched a CSS rule like
.foo { display: inline-block; }, overriding ng-cloak's display: none.
 | 
 | 
the specified attribute is depricated and creates warnings in Firefox
Closes #3231
Closes #2160
 | 
 | 
 | 
 | 
Normally $exceptionHandler doesn't throw an exception.  It is normally
used just for logging and so on.  But if an application developer
implemented a version that did throw an exception then $q would never
have called reject() when converting an exception thrown inside a `then`
handler into a rejected promise.
 | 
 | 
To avoid "Argument type Array is not assignable to parameter type function" validation error  When using the minifcation-safe array style
(eg .directive('myDirective', ['$http','$timeout','$compile', function($http,$timeout $compile).... )
Closes #3392
 | 
 | 
Closes #3525
 | 
 | 
Closes #3498
 | 
 | 
Controllers should be always instantiated after compile fn runs, but before
pre-link fn runs. This way, controllers are available to pre-link fns that
request them.
Previously this was broken for async directives (directives with templateUrl).
Closes #3493
Closes #3482
Closes #3514
 | 
 | 
<form name="ctrl.form"> form controller will accessible
as $scope.ctrl.form instead of $scope['ctrl.form']
BREAKING CHANGE:
If you have form names that will evaluate as an expression:
<form name="ctrl.form">
And if you are accessing the form from your controller:
  Before:
  function($scope) {
    $scope['ctrl.form'] // form controller instance
  }
  After:
  function($scope) {
    $scope.ctrl.form // form controller instance
  }
This makes it possible to access a form from a controller
using the new "controller as" syntax. Supporting the previous
behavior offers no benefit.
 | 
 | 
The input field email regex does't not match long domain extensions. This commit extends the email regexp to take a 6 character TLD.
Example 6-character TLDs include .museum and .travel - (e.g. allabout.travel).
 | 
 | 
Closes: #3468
 | 
 | 
This reverts commit 90532f5e3c2016c99833a4dd779a5c4718c84f4d.
The commit contains references to minErr that are not available
in the stable branch.
 | 
 | 
 | 
 | 
Closes #2997
 | 
 | 
Previously, the number filter would format small and large numbers
as scientific notation. It now uses toFixed() to ensure that all
requested digits are shown.
 | 
 | 
If an app uses HTML5 mode and we open an html5 url on IE8 or 9 which
don't support location href, we use location.replace to reload the page
with the hashbang equivalent of the url but this fails with infinite
digest. This is because location.replace doesn't update location.href
synchronously on IE8 and 9.
Closes #2802, #3305, #1417
 | 
 | 
 | 
 | 
Previously it was possible to get into a situation where child controller
was being instantiated before parent which resulted in an error.
Closes #2738
 | 
 | 
The input [number] error spans did not show on the example, as they were
relying on an non-existing property (myForm.list.$error) vs the working
property (myForm.input.$error)
 | 
 | 
Controllers are now (since angular 1.0) instantiated as regular constructorsand the scope
is injectable as $scope rather than being referenced as `this` in controller methods.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Fix closing parenthesis, quotes around string literal and remove
trailing whitespace.
Closes #3250
 | 
 | 
 | 
 | 
 | 
 | 
Closes #2915
 | 
 | 
 | 
 | 
 | 
 | 
The example directive, using contenteditable was not showing required
even if you cleared the content from it.
Closes #3156
 | 
 | 
The default fraction size for the number filter is actually computed
from the `NUMBER_FORMATS.PATTERNS.maxFrac` value in the current locale.
Closes #3157
 | 
 | 
Closes #3123
 | 
 | 
Sometimes IE returns an empty string for its normalized href on a tags.
This should pass the sanitation check in $compile.
Closes #2219, #2593
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
If user send content-type header, both content-type and default
Content-Type headers were sent. Now default header overriding is
case-insensitive.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Conflicts:
	src/ng/animation.js
	src/ng/animator.js
	src/ng/http.js
 | 
 | 
Fix a typographical error "it's" -> "its" in the dateFilter
documentation
 |