angular.js/src/ng/directive
Matthew Windwer 8ea802a1d2 feat(ngForm): Supports expression in form names
<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.
2013-08-07 13:50:18 -07:00
..
a.js feat(jqLite): switch bind/unbind to more recent jQuery on/off 2013-06-19 20:53:24 +01:00
booleanAttrs.js fix(select): don't support binding to select[multiple] 2013-07-24 18:53:09 -07:00
directives.js chore(*): remove dead code and fix code style issues 2012-04-10 16:52:12 -07:00
form.js feat(ngForm): Supports expression in form names 2013-08-07 13:50:18 -07:00
input.js fix(input): fix the email regex to accept TLDs up to 6 characters long 2013-08-07 14:02:44 -04:00
ngBind.js feat(ngBindHtml, sce): combine ng-bind-html and ng-bind-html-unsafe 2013-07-25 14:29:56 -07:00
ngClass.js feat($compile): support compile animation hooks classes 2013-08-03 00:46:18 -07:00
ngCloak.js fix(ngCloak): hide element even when CSS 'display' is set 2013-07-02 22:57:34 -07:00
ngController.js refactor($route): pull $route and friends into angular-route.js 2013-06-06 17:07:12 -07:00
ngCsp.js docs(ngCsp): add more informative details 2013-05-16 21:22:07 +01:00
ngEventDirs.js feat(directive): ng:focus, ng:blur 2013-07-18 19:24:42 +02:00
ngIf.js chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages 2013-07-29 21:22:05 -07:00
ngInclude.js chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages 2013-07-29 21:22:05 -07:00
ngInit.js docs(*): simplify doc urls 2012-06-12 00:10:18 -07:00
ngNonBindable.js docs(*): simplify doc urls 2012-06-12 00:10:18 -07:00
ngPluralize.js feat(ngPluralize): add alternative mapping using attributes 2013-07-14 16:36:15 +02:00
ngRepeat.js chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages 2013-07-29 21:22:05 -07:00
ngShowHide.js fix(ngShowHide): change the .ng-hide CSS class to use an !important flag 2013-08-02 23:55:53 -07:00
ngStyle.js fix(*): name all anonymous watch functions in Angular 2012-09-06 16:06:25 -07:00
ngSwitch.js chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages 2013-07-29 21:22:05 -07:00
ngTransclude.js fix($compile): always instantiate controllers in parent->child order 2013-07-22 11:27:53 -07:00
script.js docs(*): simplify doc urls 2012-06-12 00:10:18 -07:00
select.js feat(jqLite): switch bind/unbind to more recent jQuery on/off 2013-06-19 20:53:24 +01:00
style.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00