| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-17 | docs($templateCache): add examples of usage | Spencer | |
| 2013-07-17 | docs(dateFilter): fix typos | Bruno Coelho | |
| Fix closing parenthesis, quotes around string literal and remove trailing whitespace. Closes #3250 | |||
| 2013-07-16 | test(utils): Adds a missing test for snake_case | James deBoer | |
| 2013-07-16 | fix(writer): fix makeDir directory tree bug | Ken Sheedlo | |
| 2013-07-15 | fix($animator): ensure animations are always disabled for an element that is ↵ | Matias Niemelä | |
| not attached to the DOM | |||
| 2013-07-15 | chore(gitignore): add libpeerconnection.log | Matias Niemelä | |
| Google chrome (when tested using karma) spits out a log file called libpeerconnection.log | |||
| 2013-07-15 | chore(ngdocs): remove autofocus for the filtering search | Matias Niemelä | |
| 2013-07-14 | feat($q): added support to promise notification | Caio Cunha | |
| It is now possible to notify a promise through deferred.notify() method. Notifications are useful to provide a way to send progress information to promise holders. | |||
| 2013-07-14 | test($q): improve logging of callback invocations | Chirayu Krishnappa | |
| 2013-07-14 | feat(ngPluralize): add alternative mapping using attributes | Lucas Galfasó | |
| Add an alternative way to define a mapping for ng:pluralize using attributes instead of the `when` attribute Closes #2454 | |||
| 2013-07-14 | docs(di): promote registering controllers on modules | sdesmond | |
| 2013-07-14 | style(ngMock): add missing whitespace | David | |
| 2013-07-13 | fix(grunt): cache version number | Igor Minar | |
| caching the version number speeds up the build and preserves resources. this also fixed EMFILE error that now occurs on some macs. | |||
| 2013-07-13 | fix(angular.equals): add support for regular expressions | Ben Ripkens | |
| Regular expression objects didn't used to be considered to be equal when using 'angular.equals'. Dirty checking therefore failed to recognize a property modification. Closes #2685 | |||
| 2013-07-13 | chore(package.json): fix name to work with latest NPM | Vojta Jina | |
| 2013-07-12 | fix($http): allow interceptors to completely override headers | Igor Minar | |
| Closes #2770 | |||
| 2013-07-12 | chore(ngdoc): wrap all pages inside of a container tag for easy styling | Matias Niemelä | |
| 2013-07-12 | feat(Angular.js): skip JSON.stringify for undefined | Greg Thornton | |
| Return early in `angular.toJson` if the object to be stringified is `undefined`. IE8 stringifies `undefined` to `'undefined'` whereas other browsers return `undefined`. This normalizes behavior and passes currently broken unit tests in IE8. | |||
| 2013-07-12 | style(ngdocs): fix minor CSS issues | Alex Olshansky | |
| 2013-07-12 | feat($resource): support an unescaped URL port | Leandro Ostera | |
| The colon character is used to identify parameters in $resource. This meant that we had to escape the colon used in a port. It turns out that this is not necessary if we assume that parameter names cannot consist of only digits. If the parameter consists only of numbers, then it's a port. Closes #2778 | |||
| 2013-07-12 | fix(ngScenario): select().option(val) should prefer exact value match | Stephen Merity | |
| With select(...).option(val) it previously would select the first node which contains the value, even if an exact match was available. This fix prefers exact matches if available, otherwise it reverts to the previous 'contains' behaviour for backwards compatibility. Closes #2856 | |||
| 2013-07-12 | fix(sanitize): match URI schemes case-insensitively | Pete Bacon Darwin | |
| According to RFC 3986 (http://tools.ietf.org/html/rfc3986#section-3.1) schemes such as http or mailto are case-insensitive. So links such as http://server/ and HTTP://server/ are valid and equivalent. Closes #3210 | |||
| 2013-07-11 | fix(ngSubmit): expose $event to ngSubmit callback | Wesley Cho | |
| 2013-07-11 | fix(ngValue): made ngValue to write value attribute to element | Mikk Kirstein | |
| 2013-07-11 | feat(ngDocs): add links to source for API | Julien Bouquillon | |
| - add tests - the link points to the gruntUtil.getVersion().number tree on github | |||
| 2013-07-11 | fix(scope): watches can be safely unregistered inside watch handlers | Paulo Scardine | |
| Closes #2915 | |||
| 2013-07-11 | style(sanitize): fix typo in variable names | Ben Holley | |
| 2013-07-11 | refactor(Angular.js): remove code duplication | Eric Subach | |
| Closes #2890 | |||
| 2013-07-11 | fix($injector): improve $injector:nomod error message | Igor Minar | |
| Closes #2695 | |||
| 2013-07-11 | chore(build): add check for merge conflicts, ddescribe, and iit | Brian Ford | |
| 2013-07-11 | test(ngList): remove disabled test | Igor Minar | |
| this test fails and we don't have intentions on making it pass since we never made a commitment to implement this feature. | |||
| 2013-07-11 | docs(ngList): fix example and add e2e test | Igor Minar | |
| 2013-07-10 | docs(guide): clarify example | sdesmond | |
| 2013-07-10 | docs(guide): example filter does not conditionally assign a color | sdesmond | |
| 2013-07-10 | docs(guide/di): fix typo | Robert Fauver | |
| 2013-07-10 | docs(contribute): improve git instructions | Tay Ray Chuan | |
| 2013-07-10 | docs(overview): fix typo | Lefteris Paraskevas | |
| Removed repeated "the" in the sentence: The input invalidates itself by turning red when you enter invalid data or leave "the" the input fields blank (Line 137). | |||
| 2013-07-10 | style(input): remove ws | Igor Minar | |
| 2013-07-10 | docs(ngMock): correct verifyNoOutstandingExpectation example | Mark Striemer | |
| 2013-07-09 | fix(ngdocs): merge duplicate css class attributes | Alex Olshansky | |
| 2013-07-09 | docs(angular.identity): fix missing 'angular' in identity function | Marco Vito Moscaritolo | |
| 2013-07-08 | feat($http): accept function as headers value | bolasblack | |
| So we can request with dynamic header value. module.factory('Res', [ '$resource' '$routeParams' 'globalConfig' function($resource, $routeParams, globalConfig) { resource('/url/:id', {id: "@id"}, { patch: { method: 'patch', headers: { 'Authorization': function() { return "token " + globalConfig.token; } } } }); }]); | |||
| 2013-07-08 | docs(ngModelController): provide a more intuitive example | Pete Bacon Darwin | |
| The example directive, using contenteditable was not showing required even if you cleared the content from it. Closes #3156 | |||
| 2013-07-08 | docs(numberFilter): fix explanation of default fraction size | Pete Bacon Darwin | |
| The default fraction size for the number filter is actually computed from the `NUMBER_FORMATS.PATTERNS.maxFrac` value in the current locale. Closes #3157 | |||
| 2013-07-08 | fix(angular.equals): do not match keys defined in the prototype chain | Daniel Luz | |
| Merely testing for object[key] will give incorrect results on keys defined in Object.prototype. Note: IE8 is generally broken in this regard since `for...in` never returns certain property keys even if they are defined directly on the object. See #2141 - partially merges this PR | |||
| 2013-07-08 | chore(grunt): tweak ng-closure-runner setup | Pete Bacon Darwin | |
| 2013-07-07 | docs(guide/e2e-testing): fix typos | tgkokk | |
| 2013-07-04 | docs(input): ng-model doesn't work well with isolated scope directive | basarat | |
| Closes #3123 | |||
| 2013-07-04 | docs(guide/directive): make directive controller minification-safe | Andrew O'Brien | |
| It is best to emphasize that the "controller" property needs to be min safe Closes #3125 | |||
| 2013-07-03 | fix($compile): empty normalized href should pass sanitation check | Anders Hessellund Jensen | |
| Sometimes IE returns an empty string for its normalized href on a tags. This should pass the sanitation check in $compile. Closes #2219, #2593 | |||
