| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-11 | fix(scenario): NPE when no angular loaded in test page | Jimmy Zhuo | |
| 2012-09-11 | docs($rootScope): fix iteration limit described by $watch, it's actually 10 ↵ | Daniel Luz | |
| as of now | |||
| 2012-09-11 | docs($rootScope): fix typos and minor wording tweaks on $watch | Daniel Luz | |
| 2012-09-11 | docs($rootScope): fix quoting on expression | Daniel Luz | |
| 2012-09-11 | docs($rootScope): standardize on present, third-person actions for descriptions | Daniel Luz | |
| 2012-09-11 | docs($rootScope): backquote attribute types too on $on | Daniel Luz | |
| 2012-09-11 | docs($cacheFactory): fix backquotes on method descriptions | Daniel Luz | |
| 2012-09-11 | docs($rootScope): fix typos on $new | Daniel Luz | |
| 2012-09-11 | docs($rootScope): fix typo on $eval | Daniel Luz | |
| 2012-09-11 | docs($rootScope): fix typos on $watch | Daniel Luz | |
| 2012-09-11 | docs(ngResource): Spelling typo (agressive => aggressive) | Jay Zeng | |
| 2012-09-10 | fix($resource): fix isDefined -> angular.isDefined | Igor Minar | |
| 2012-09-06 | fix(a): prevent Opera from incorrectly navigating on link click | sgtpep | |
| we handle the navigation by ourselves, so we need to prevent the default action. Opera ignores event.preventDefault() call so we must return false. | |||
| 2012-09-06 | fix(FormController): propagate dirty state to parent forms | Kai Groner | |
| 2012-09-06 | fix(*): name all anonymous watch functions in Angular | Shyam Seshadri | |
| This will allow us to see function names in Batarang and debugger. Closes #1119 | |||
| 2012-09-06 | fix(ngSrc): don't set src if value is empty string | Xiangru Chen | |
| Current implementation of ngSrc may lead to empty src attribute when page is loading. For example: <img ng-src="{{image.url}}"> can be temporarily rendered as <img src=""> before the image resource is loaded. Some browser emits a request to the current page when seeing <img src=""> (Firefox13 and IE8 will, Chromium20 won't), which leads to performance problems. | |||
| 2012-09-06 | fix($injector): more conservative annotation parsing | Misko Hevery | |
| 2012-09-06 | feat(scenario): add dblclick method to the ngScenario dsl | Pedro Del Gallego | |
| 2012-09-06 | fix(dateFilter): make timezone optional | Iwein Fuld | |
| Makes the time zone optional in the date filter Problem with the current R_ISO8601_STR regex was that the time was optional, but the zone was not. This results in the filter not formatting local date times, which it could easily do. For example: 2012-08-30 -> formatted 2012-08-30T06:06:06.123Z -> formatted 2012-08-30T06:06:06.123 -> NOT formatted A simple change in the regex fixes this. Arguably this is closer to the ISO8601 spec which specifies local dates being in the "current time zone" and not requiring a Z. In any case it behaves more like a user would expect. | |||
| 2012-09-06 | feat(mocha): support mocha in angular mocks | Cameron Westland | |
| 2012-09-06 | feat(ngModel): support ngTrim attribute on input | Gregory Pike | |
| 2012-09-06 | fix($resource): allow falsy values in URL parameters | Benjamín Eidelman | |
| Close #1212 when a param value was 0 (or false) it was ignored and removed from url. after this fix that only happens if the value is undefined or null. | |||
| 2012-09-06 | fix($resource): ignore undefined parameters | petrovalex | |
| - $resource should handle multiple params with same name - ignore slashes of undefined parameters - fix default parameters issue, mentioned in #875 Closes #875 Closes #782 | |||
| 2012-09-06 | fix(ngClass): works with class interpolation | Max Martinsson | |
| Closes #1016 | |||
| 2012-09-06 | feat($resource): support custom headers per action | Max Martinsson | |
| Closes #736 | |||
| 2012-09-06 | fix(ngRepeat): now works with primitive types | Zhenbo Zhang | |
| closes #933 | |||
| 2012-09-06 | fix($parser): string concatination with undefined model | petrovalex | |
| Closes #988 | |||
| 2012-09-06 | fix(dateFilter): support sub-second precision on dateFilter | Stein Jakob Nordbø | |
| 2012-09-06 | docs($route): rename leftover $afterRouteChange to $routeChangeSuccess | Igor Minar | |
| 2012-08-31 | revert: fix(ng-repeat) to work with primitive types | Igor Minar | |
| this was accidentaly merged in. the commit is not ready yet and we don't have CLA signature. This reverts commit 98d489712eff7559bce87ae53bd242112a875c1a. | |||
| 2012-08-30 | fix(docs): indicate support for passing a string as the `controller` ↵ | Brice Burgess | |
| property on $routeProvider's route object | |||
| 2012-08-30 | fix(ng-repeat) to work with primitive types | Zhenbo Zhang | |
| 2012-08-30 | fix(mocks): free up memory after every spec | Vojta Jina | |
| 2012-08-30 | feat($interpolate): provide contextual error messages | Brian Ford | |
| if an exception occurs during interpolation of a string (e.g. name() in "Hello, {{name()}}!" throws an exception) we now print an error message with the expression that was being evaluated when the exception was thrown. | |||
| 2012-08-30 | fix(jqLite): better support for xhtml | Igor Minar | |
| it turns out that some stuff doesn't work in xhtml as it does in html. for example can't be innerHTML-ed and auto-closing of elements doesn't work. the reporter of the referenced issue claimed that innerHTML vs text on script made a difference but that doesn't appear to be true in my testing. I'm not including test for this because testacular doesn't currently run tests in xhtml yet. Closes #1301 | |||
| 2012-08-27 | doc($log): correct non-working example | Misko Hevery | |
| 2012-08-27 | fix(ng-list): remove data bound flicker | Misko Hevery | |
| 2012-08-24 | docs(a): expose hidden docs | Igor Minar | |
| It seems that docs for these directive were previously hidden by accident | |||
| 2012-08-23 | docs(ngRoute): fix typo | johnlindquist | |
| aftre -> after | |||
| 2012-08-13 | fix($compile): denormalize directive templates | Igor Minar | |
| Since developers are allowed to customize start/end interpolation strings, but third-party directive creators don't know about these customizations, we should standardize on {{ }} in templates of reusable (third-party) directives. During the compilation, these templates are then denormalized to use whatever the custom start/end symbol is, effectively translating the template into the syntax of the runtime environment. This addresses an issue raised at http://goo.gl/e8VPV Existing code should not be affected by this change since project that do use custom interpolation markers are not expected to use {{ }} in existing directive templates. | |||
| 2012-08-13 | refactor($compile): code cleanup | Igor Minar | |
| 2012-08-13 | fix(ngPluralize): fixes ng-pluralize when using non-standard start/end symbols | Brian Ford | |
| Closes #1134 | |||
| 2012-08-13 | feat($interpolate): expose start/end symbols in run phase | Igor Minar | |
| previously the startSymbol() and endSymbol() getters were exposed only via provider in the config phase | |||
| 2012-08-13 | docs($interpolateProvider): fixing docs | Igor Minar | |
| 2012-08-13 | fix($interpolate): $interpolateProvider.endSymbol() returns startSymbol | Igor Minar | |
| I also added missing tests. | |||
| 2012-08-13 | docs($interpolate): fix typo in description | Igor Minar | |
| 2012-08-12 | docs($compileProvider): remove duplicate of .directive() | Vojta Jina | |
| 2012-08-12 | docs: fix broken links to $compileProvider.directive() | Vojta Jina | |
| 2012-08-10 | fix(docs): fixed documentation for using linky | Brian Ford | |
| 2012-08-10 | feat($http): support reponseType | Vojta Jina | |
| Closes #1013 | |||
