| Age | Commit message (Collapse) | Author | 
|---|
|  | Closes #4050 | 
|  | This reverts commit 4407e81c618d42c70e8cfca4f52dfc4a669b5c68.
No features or breaking changes in the stable branch please. | 
|  | <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. | 
|  | Closes #2997 | 
|  |  | 
|  | Form documentation fixes:
- Fix broken form example in docs
- A few small other corrections in form docs. | 
|  |  | 
|  | this fix ensures that we prevent the default action on form submission
(full page reload) even in cases when the form is being destroyed as
a result of the submit event handler (e.g. when route change is
triggered).
The fix is more complicated than I'd like it to be mainly because
we need to ensure that we don't create circular references between
js closures and dom elements via DOM event handlers that would then
result in a memory leak.
Also the differences between IE8, IE9 and normal browsers make testing
this ugly.
Closes #1238 | 
|  | we now have two types of namespaces:
- true namespace: angular.* - used for all global apis
- virtual namespace: ng.*, ngMock.*, ... - used for all DI modules
the virual namespaces have services under the second namespace level (e.g. ng.)
and filters and directives prefixed with filter: and directive: respectively
(e.g. ng.filter:orderBy, ng.directive:ngRepeat)
this simplifies urls and makes them a lot shorter while still avoiding name collisions | 
|  |  | 
|  |  | 
|  | Removing invalid widget sometimes resulted in improper cleanup of the form state. | 
|  |  | 
|  |  |