| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-03-26 | remove _null and _undefined | Igor Minar | |
| they have no significant effect on minified and gziped size. in fact they make things worse. file | before | after removal ---------------------------------------- concat | 325415 | 325297 min | 62070 | 62161 min + gzip | 25187 | 25176 The bottom line is that we are getting 0.05% decrease in size after gzip without all of the hassle of using underscores everywhere. | |||
| 2011-02-16 | Small spelling and grammar fixes in documentation. | Anthony Lieuallen | |
| 2011-02-03 | Added remainder of the cookbook | Misko Hevery | |
| 2011-02-01 | changed the documentation @example to use <doc:example> | Misko Hevery | |
| 2011-01-30 | fixing angular.Scope. docs | Igor Minar | |
| 2011-01-25 | Scope should retrieve $log and $exceptionHandler via $service | Igor Minar | |
| - fix $log and $exceptionHandler retrieval - remove reference to non-existent `error` handler - update tests | |||
| 2011-01-24 | improve angular.Scope.$eval docs | Igor Minar | |
| 2011-01-10 | Rename angular.foreach to angular.forEach to make the api consistent. | Igor Minar | |
| camelcase is used for other angular functions and forEach is also used by EcmaScript standard. - rename the internal as well as the external function name - tweak the implementation of the function so that it doesn't clober it self when we extend the angular object with an object that has a forEach property equal to this forEach function Closes #85 | |||
| 2011-01-04 | rename scope.$inject to scope.$service | Igor Minar | |
| see changelog diff for more info | |||
| 2010-12-08 | Remove RegExp parser | Misko Hevery | |
| - RegExp parser is rearly used, feature, and one should not have RegExps in views anyways, so we are removing it BACKWARD INCOMPATIBLE CHANGE!!! | |||
| 2010-12-02 | Closes #170. Corrected the behavior of select when options are ng:repeated | Misko Hevery | |
| - Delete $postEval method, as it was a hack | |||
| 2010-11-24 | fixing docs for angular.scope | Igor Minar | |
| 2010-11-24 | docs for angular.scope. and angular.scope. | Igor Minar | |
| 2010-11-18 | fix all closure compilation warnings due to invalid function types | Igor Minar | |
| 2010-11-18 | add @workInProgress tag and mark all @ngdocs as work in progress | Igor Minar | |
| 2010-11-18 | most of the documentation for angular.scope and friends | Igor Minar | |
| 2010-11-18 | scope docs + lowercase doc fix | Igor Minar | |
| 2010-11-16 | Changed error handling so that better stack traces are displayed in the ↵ | Misko Hevery | |
| ng-errors | |||
| 2010-11-11 | $watch should optionally skip listener exec | Igor Minar | |
| - if initRun param is set to false, listener doesn't execute - the oldValue should equal newValue during the initial execution - added docs - added specs | |||
| 2010-11-10 | added ng:switch-when-default; changed $watch to always fire on init. (may be ↵ | Misko Hevery | |
| backward incompatible) | |||
| 2010-10-31 | fix typo, and change a list to string for more efficient compression. | Misko Hevery | |
| 2010-10-18 | JSON parser is now strict (ie, expressions are not allowed for security) | Misko Hevery | |
| Close #57 | |||
| 2010-10-15 | removed unneeded function rethrow from scope which was interfering with the ↵ | Misko Hevery | |
| test rethrow function | |||
| 2010-10-14 | use new Function instead of eval() | Misko Hevery | |
| Close #52 | |||
| 2010-10-14 | temporary backwards compatibility patch for | Igor Minar | |
| 2010-10-12 | Introduced injector and $new to scope, and injection into link methods and ↵ | Misko Hevery | |
| controllers - added angular.injector(scope, services, instanceCache) which returns inject - inject method can return, instance, or call function which have $inject property - initialize services with $creation=[eager|eager-publish] this means that only some of the services are now globally accessible - upgraded $become on scope to use injector hence respect the $inject property for injection - $become should not be run multiple times and will most likely be removed in future version - added $new on scope to create a child scope - $inject is respected on constructor function - simplified scopes so that they no longer have separate __proto__ for parent, api, behavior and instance this should speed up execution since scope will now create one __proto__ chain per scope (not three). BACKWARD COMPATIBILITY WARNING: - services now need to have $inject instead of inject property for proper injection this breaks backward compatibility - not all services are now published into root scope (only: $location, $cookie, $window) - if you have widget/directive which uses services on scope (such as this.$xhr), you will now have to inject that service in (as it is not published on the root scope anymore) | |||
| 2010-10-13 | temparary backaward compatibility patch for Controller.init | Igor Minar | |
| - feedback relies on *Controller.init to be called when a Controller is being created. this with previous angular refactoring this is not happening in angular any more. To make it easier for feedback to transition, this change makes $become call controller's init method if present. - call to Controller.init from $route.updateRoute was removed. this was left there by accident during the previous refactoring. | |||
| 2010-09-21 | HEAD is now at 10c0151 Fixes on issue when a SELECT has OPTION which are ↵ | Misko Hevery | |
| data bound (ie OPTION has repeater or OPTION.value is bound), then SELECT does not update to match the correct OPTION after the change in model (ie after the OPTION repeater unrolls or OPTION.value is changed.) | |||
| 2010-09-14 | Fixed all trivial jslint violations | Misko Hevery | |
| 2010-08-18 | stringify names for better compression, remove dead functions, removed ↵ | Misko Hevery | |
| underscore.js compatibility | |||
| 2010-08-13 | initial perf testing | Misko Hevery | |
| 2010-08-11 | clean up for better obfuscation | Misko Hevery | |
| 2010-08-10 | fix bug where $eval on undefined throws error | Misko Hevery | |
| 2010-07-26 | minor speed improvements | Misko Hevery | |
| 2010-07-26 | minor performance improvements | Misko Hevery | |
| 2010-07-20 | clean up error handling a bit. | Misko Hevery | |
| 2010-07-15 | updated list of JavaScript keywords | Misko Hevery | |
| 2010-07-08 | added class as a constant keyword to generated code | Misko Hevery | |
| 2010-07-02 | changed the eval for ie to be able to return a function | Misko Hevery | |
| 2010-07-02 | fixed special keywords in chrome such as x.throw must be x["throw"]. | Misko Hevery | |
| 2010-06-02 | Revert "Revert "removed few key foreach and replaced thime with for loop for ↵ | Shyam Seshadri | |
| performance."" This reverts commit a29c5e4c7fd5e708c28e70e974bf873621d5277c. | |||
| 2010-06-02 | Revert "removed few key foreach and replaced thime with for loop for ↵ | Shyam Seshadri | |
| performance." This reverts commit 6143b04384680d17f38c2d5894a9b9961ea33288. | |||
| 2010-05-31 | removed few key foreach and replaced thime with for loop for performance. | Misko Hevery | |
| 2010-05-30 | added compiled getterFN for better performance | Misko Hevery | |
| 2010-05-30 | compiler exposos both self and this function calling convention | Misko Hevery | |
| 2010-05-30 | improve error handling with elements | Misko Hevery | |
| 2010-05-30 | remove the relience of parser an special self object, now passing generic self | Misko Hevery | |
| 2010-05-30 | remove the uneeded call to createScope when evaluating expressions | Misko Hevery | |
| 2010-05-19 | added error handler to xhr requests | Misko Hevery | |
| 2010-05-13 | fixed issue with radio view clobering model if radio was checked. | Misko Hevery | |
