| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-12 | docs(minErr): add location/ihshprfx | Igor Minar | |
| 2013-08-12 | chore($location): drop bugus error | Igor Minar | |
| we can never get to this state, so dropping the error | |||
| 2013-08-09 | style(minerr): prefer component name as namespace | Ken Sheedlo | |
| Closes #3527 | |||
| 2013-08-09 | fix(re-bootstrap): Throw an error when bootstrapping a bootstrapped element. | Jeff Cross | |
| Nothing would prevent a user from accidentally calling angular.bootstrap on an element that had already been bootstrapped. If this was done, odd behavior could manifest in an application, causing different scopes to update the same DOM, and causing debugger confusion. This fix adds a check inside of angular.bootstrap to check if the passed-in element already has an injector, and if so, will throw an error. | |||
| 2013-08-09 | docs(jqLite): update the minErr codes for on() and off() | Igor Minar | |
| 2013-08-08 | docs(compile/tplrt): description for compile/tplrt error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/selmulti): description for compile/selmulti error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/nodomevents): description for compile/nodomevents error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/notassign): description for compile/notassign error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/multidir): description for compile/multidir error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(minErr): add controller/noscp docs | Igor Minar | |
| 2013-08-08 | docs(minErr): add rootScope/inprog docs | Igor Minar | |
| 2013-08-08 | docs(minErr): improve compiler/iscp | Igor Minar | |
| 2013-08-08 | docs(minErr): improve sce/icontext | Igor Minar | |
| 2013-08-08 | docs(minErr): improve sce/iequirks doc | Igor Minar | |
| 2013-08-08 | docs(minerr): add description for ngResource:badargs | Ken Sheedlo | |
| Closes #3510 | |||
| 2013-08-08 | docs(minErr): add minErr description for jqLite:nosel | Brian Ford | |
| Closes #3426 | |||
| 2013-08-08 | docs(minerr): add description for ngResource:badcfg | Ken Sheedlo | |
| Closes #3509 | |||
| 2013-08-08 | docs(minErr): rename compile/utrat to compile/uterdir | Igor Minar | |
| 2013-08-08 | docs(minerr): add description for $compile:utrat | Ken Sheedlo | |
| Closes #3507 | |||
| 2013-08-08 | docs(minErr): improve sce/isecurl doc | Igor Minar | |
| 2013-08-08 | docs(minErr): rename sce/isecrurl to sce/insecurl | Igor Minar | |
| 2013-08-08 | docs(minErr): improve sce/itype.ngdoc | Igor Minar | |
| 2013-08-08 | docs(minErr): add minErr description for $compile:ctreq | Brian Ford | |
| Closes #3423 | |||
| 2013-08-07 | docs(minerr): fill in error message descriptions | Ken 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-07 | docs(minerr): add description for $rootScope:infdig | Ken Sheedlo | |
| 2013-08-07 | docs(minErr): add minErr description for $compile:tpload | Brian Ford | |
| Closes #3427 | |||
| 2013-08-07 | docs(error): updated description for ngPattern/noregexp.ngdoc | naomiblack | |
| 2013-08-07 | docs(error): added description for ngOptions/iexp.ngdoc | naomiblack | |
| Closes #3431 | |||
| 2013-08-07 | docs(error): added description for ngSanitize/badparse.ngdoc | naomiblack | |
| Closes #3438 | |||
| 2013-08-07 | docs(minErr): improve $parse/isecfn | Igor Minar | |
| 2013-08-07 | docs(minerr): Adds a description for parser.lexerr | James deBoer | |
| Closes #3433 | |||
| 2013-08-07 | docs(minerr): Adds a description for parser.syntax | James deBoer | |
| Closes #3434 | |||
| 2013-08-07 | docs(minerr): Adds a description for parser.ueoe | James deBoer | |
| Closes #3435 | |||
| 2013-08-07 | docs(minerr): Adds a description for ngRepeat.dupes | James deBoer | |
| Closes #3439 | |||
| 2013-08-07 | docs(minerr): Adds a description for ngRepeat.iexp | James deBoer | |
| Closes #3440 | |||
| 2013-08-07 | docs(minerr): Adds a description for ngRepeat.iidexp | James deBoer | |
| Closes #3441 | |||
| 2013-08-07 | docs(mirErr): add a description for $parse.isecfld and isecfn | James deBoer | |
| 2013-08-03 | docs(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-03 | fix(ngAnimate): remove compound JS selector animations | Matias Niemelä | |
| 2013-08-02 | docs(compile/iscp): description for compile/iscp error | Misko Hevery | |
| 2013-07-31 | fix(location): fix parameter handling on search() | Misko Hevery | |
| 2013-07-31 | fix(resource): check whether response matches action.isArray | Pete Bacon Darwin | |
| When using $resource you must setup your actions carefully based on what the server returns. If the server responds to a request with an array then you must configure the action with `isArray:true` and vice versa. The built-in `get` action defaults to `isArray:false` and the `query` action defaults to `isArray:true`, which is must be changed if the server does not do this. Before the error message was an exception inside angular.copy, which didn't explain what the real problem was. Rather than changing the way that angular.copy works, this change ensures that a better error message is provided to the programmer if they do not set up their resource actions correctly. Closes #2255, #1044 | |||
| 2013-07-31 | feat(directive): support as instance syntax | Lucas Galfasó | |
| Support controller: 'MyController as my' syntax for directives which publishes the controller instance to the directive scope. Support controllerAs syntax to define an alias to the controller within the directive scope. | |||
| 2013-07-30 | docs(error): improve the cacheFactory/iid.ngdoc | Igor Minar | |
| 2013-07-27 | docs(tutorial): mention the controller along the scope | Roland | |
| 2013-07-27 | docs(tutorial): add formatting | Roland | |
| the string literal {{query}} was missing as it was not enclosed into `` | |||
| 2013-07-27 | docs(tutorial): add that the test also creates a controller | Roland | |
| 2013-07-26 | fix($compile): don't use new with minErr | Ken Sheedlo | |
| Someone wrote `throw new $compileMinErr(...)` when it should have been `throw $compileMinErr(...)`. This caused a build warning. | |||
| 2013-07-25 | docs(guide): remove superfluous }); | Roland | |
