aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-08-08docs(minErr): rename sce/isecrurl to sce/insecurlIgor Minar
2013-08-08docs(minErr): improve sce/itype.ngdocIgor Minar
2013-08-08docs(ngModel): add link to NgModelControllerIgor Minar
2013-08-08docs(minErr): add minErr description for $compile:ctreqBrian Ford
Closes #3423
2013-08-07docs(minerr): fill in error message descriptionsKen Sheedlo
Errors I've documented so far: - `$injector:cdep` - `$injector:itkn` - `$injector:modulerr` - `$injector:nomod` - `$injector:pget` - `$injector:unpr` - `ng:areq` - `ng:cpi` - `ng:cpws` - `ngModel:noass` Closes #3430
2013-08-07fix(jqLite): return array from multi select in val()Eric Hagman
2013-08-07test(matchers): support 'not' text in toBeHidden matcherChirayu Krishnappa
2013-08-07docs(ngClass): updated the example with string, map and array syntaxJamund Ferguson
Closes #3084
2013-08-07docs(minerr): add description for $rootScope:infdigKen Sheedlo
2013-08-07chore(bower): add a .bowerrc filejankuca
2013-08-07feat(ngForm): Supports expression in form namesMatthew Windwer
<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-07fix(compile): fix directive as identifierChirayu Krishnappa
2013-08-07docs(ngRoute): make config block for the routeProvider example explicitDavid Mosher
2013-08-07chore(dump): fix our karma.dump bridgeIgor Minar
previously it didn't work for dumping multiple objects
2013-08-07fix(input): fix the email regex to accept TLDs up to 6 characters longneilmcgibbon
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).
2013-08-07docs(minErr): add minErr description for $compile:tploadBrian Ford
Closes #3427
2013-08-07fix(jqLite): forgive unregistration of a non-registered handlerPawel Kozlowski
2013-08-07docs(error): updated description for ngPattern/noregexp.ngdocnaomiblack
2013-08-07docs(error): added description for ngOptions/iexp.ngdocnaomiblack
Closes #3431
2013-08-07docs(error): added description for ngSanitize/badparse.ngdocnaomiblack
Closes #3438
2013-08-07docs(minErr): improve $parse/isecfnIgor Minar
2013-08-07docs(minerr): Adds a description for parser.lexerrJames deBoer
Closes #3433
2013-08-07docs(minerr): Adds a description for parser.syntaxJames deBoer
Closes #3434
2013-08-07docs(minerr): Adds a description for parser.ueoeJames deBoer
Closes #3435
2013-08-07docs(minerr): Adds a description for ngRepeat.dupesJames deBoer
Closes #3439
2013-08-07docs(minerr): Adds a description for ngRepeat.iexpJames deBoer
Closes #3440
2013-08-07docs(minerr): Adds a description for ngRepeat.iidexpJames deBoer
Closes #3441
2013-08-07docs(mirErr): add a description for $parse.isecfld and isecfnJames deBoer
2013-08-06feat(ngMock/$httpBackend): support a matching function for data paramKen Chen
Add support for passing function as validating data: - To avoid hacking test method of RegExp - Optionally overwrite `toString` method of fn to show validation tips - change docs: param description for `when`, `whenPost`, `whenPut`, `expect`, `expectPost`, `expectPut`, `expectPATCH` Closes: #2981
2013-08-06docs(compile): fix minor spelling mistakeMichael Stewart
Closes: #3468
2013-08-05fix(tutorial): show tutorial pages in search navKen Sheedlo
2013-08-03docs(guide/controller): fix wording in list of 'Do not use'Mark Campbell
Wording has been changed in two of the examples to read naturally. For example: From: 'Do not use controllers for to run stateless or stateful code shared across controllers' To: 'Do not use controllers for sharing stateless or stateful code across controllers' Closes #3454
2013-08-03feat($compile): support compile animation hooks classesMatias Niemelä
2013-08-03chore(ngdocs): provide detailed documentation for the $animate service timelineMatias Niemelä
2013-08-03chore(ngdocs): provide docs for the core $animator serviceMatias Niemelä
2013-08-03fix(animate): cleanup global leaked vars.Misko Hevery
2013-08-03fix(ngAnimate): remove compound JS selector animationsMatias Niemelä
2013-08-02chore(ngdocs): make sure the fold feature doesn't show up during page loadMatias Niemelä
2013-08-02fix(ngShowHide): change the .ng-hide CSS class to use an !important flagMatias Niemelä
2013-08-02chore(ngMock): remove unused $animate delegation methodsMatias Niemelä
2013-08-02chore(ngMock): rename $animate.process to $animate.flushNext()Matias Niemelä
2013-08-02docs(compile/iscp): description for compile/iscp errorMisko Hevery
2013-08-01fix(ngMock): keep withCredentials on passThroughÉtienne Barrié
When using passThrough() and specifying withCredentials on the $http call, the option is now passed to the underlying $httpBackend.
2013-08-01fix(docs): handle the empty string in errorDisplayKen Sheedlo
2013-07-31fix(location): fix parameter handling on search()Misko Hevery
2013-07-31fix($parse): unwrap promise when setting a fieldJames Davies
This fixes an inconsistency where you can't call the setter function when the expression resolves to a top level field name on a promise. Setting a field on an unresolved promise will throw an exception. (This shouldn't really happen in your template/js code and points to a programming error.) Closes #1827
2013-07-31fix(mobile-ng-click): prevent unwanted opening of the soft keyboardJan Laußmann
Ghost clicks are busted but the corresponding form elements are still focused. This means that for example on smartphones the soft keyboard will be opened. This pull request prevents the unwanted opening of the soft keyboard.
2013-07-31feat(scenario): expose jQuery for usage outside of angular scenarioAndreas Marek
The global jQuery reference is removed by angular scenario and only a local scoped reference is kept. To make jQuery available for other code, a new reference angular.scenario.jQuery is added.
2013-07-31chore(travis): print grunt exit code for debuggingIgor Minar
2013-07-31style($sce): remove unreachable return statementIgor Minar