angular.js/test/ng/directive
Matthew Windwer 4407e81c61 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:59:41 -07:00
..
aSpec.js fix(a): workaround IE bug affecting mailto urls 2013-02-14 16:43:28 -08:00
booleanAttrsSpec.js fix(ngSrc,ngHref): binding should set element prop as well as attr 2012-05-06 23:01:33 -07:00
formSpec.js feat(ngForm): Supports expression in form names 2013-08-07 13:59:41 -07:00
inputSpec.js fix(input): fix the email regex to accept TLDs up to 6 characters long 2013-08-07 14:18:22 -04:00
ngBindSpec.js chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a module 2012-04-11 15:50:47 -07:00
ngClassSpec.js fix(ngClass): should remove classes when object is the same but property has changed 2013-04-16 13:22:37 +01:00
ngClickSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngCloakSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngControllerSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngCspSpec.js feat($parse): CSP compatibility 2012-04-27 23:04:24 -07:00
ngEventDirsSpec.js fix(ngSubmit): expose $event to ngSubmit callback 2013-07-11 17:27:36 -07:00
ngIncludeSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngInitSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngNonBindableSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngPluralizeSpec.js fix(ngPluralize): handle the empty string as a valid override 2013-05-10 20:04:59 +01:00
ngRepeatSpec.js fix(ngRepeat): correctly apply $last if repeating over object 2013-01-17 00:25:07 -08:00
ngShowHideSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngSrcSpec.js fix(ngSrc): don't set src if value is empty string 2012-09-06 15:49:49 -07:00
ngStyleSpec.js chore(tests): rename all directive names to the normalized form 2012-04-09 11:48:54 -07:00
ngSwitchSpec.js fix(ngSwitch): don't leak when destroyed while not attached 2013-01-18 00:03:42 -08:00
ngViewSpec.js fix(compile): should not leak memory when there are top level empty text nodes 2013-02-18 13:04:24 +00:00
scriptSpec.js fix(script): Incorrectly reading script text on ie 2012-04-20 11:29:34 -07:00
selectSpec.js fix(select): ensure empty option is not lost in IE9 2013-05-07 21:29:44 +01:00
styleSpec.js chore(module): move files around in preparation for more modules 2012-03-28 11:16:35 -07:00