| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-25 | revert: fix($location): parse query string when path is empty in hashbang mode | Igor Minar | |
| This reverts commit cad717b1171affc3d540cea372576c70b0cb2295. This change causes regressions in existing code and after closer inspection I realized that it is trying to fix an issue that is should not be considered a valid issue. The location service was designed to work against either "hash" part of the window.location when in the hashbang mode or full url when in the html5 mode. This change tries to merge the two modes partially, which is not right. One reason for this is that the search part of window.location can't be modified while in the hashbang mode (a browser limitation), so with this change part of the search object should be immutable and read-only which will only cause more confusion. Relates to #5964 | |||
| 2014-02-26 | feat($parse): support trailing commas in object & array literals | Michał Gołębiowski | |
| Per ECMAScript 5.1 specification trailing commas are allowed in object and array literals. All modern browsers as well as IE>8 support this syntax. This commit adds support for such syntax to Angular expressions. | |||
| 2014-02-24 | perf($animate): use rAF instead of timeouts to issue animation callbacks | Matias Niemelä | |
| 2014-02-24 | chore(core): create a wrapper to manage async callbacks | Matias Niemelä | |
| 2014-02-24 | chore(core): introduce a wrapper for requestAnimationFrame | Matias Niemelä | |
| 2014-02-24 | docs($interpolate) fix sample code appearing unformatted | Diego Muñoz Escalante | |
| Closes #6418 | |||
| 2014-02-23 | docs($routeProvider): correct "slashs" to "slashes" | Alessandro Bahgat | |
| Closes #6415 | |||
| 2014-02-22 | docs(ngPluralize): corrected "bounded to" to "bound to" | Alessandro Bahgat | |
| Closes #6408 | |||
| 2014-02-22 | docs($animate): change @param to use valid types | Peter Bacon Darwin | |
| `{jQuery/jqLite element}` is not a valid jsdoc type and breaks when being parsed causing the documentation to look wrong. This commit changes all such param tags to use `DOMElement` instead, which is what is used for similar params in `$compile` and `angular.element`. | |||
| 2014-02-21 | perf($cacheFactory): skip LRU bookkeeping for caches with unbound capacity | Sekib Omazic | |
| Fixes #6193 Closes #6226 | |||
| 2014-02-21 | fix($location): parse query string when path is empty in hashbang mode | Caitlin Potter | |
| Before this fix, search queries in hashbang mode were ignored if the hash was not present in the url. This patch corrects this by ensuring that the search query is available to be parsed by urlResolve when the hashbang is not present. Closes #5964 | |||
| 2014-02-21 | fix(input): use ValidityState to determine validity | Caitlin Potter | |
| In browsers where HTML5 constraint validation is (partially) implemented, an invalid number entered into an input[type=number] (for example) input element would be visible to the script context as the empty string. When the required or ngRequired attributes are not used, this results in the invalid state of the input being ignored and considered valid. To address this, a validator which considers the state of the HTML5 ValidityState object is used when available. Closes #4293 Closes #2144 Closes #4857 Closes #5120 Closes #4945 Closes #5500 Closes #5944 | |||
| 2014-02-21 | fix(isElement): reduce false-positives in isElement tests | Caitlin Potter | |
| Complimentary change to match changed $parse behaviour. | |||
| 2014-02-21 | fix($parse): reduce false-positives in isElement tests | Caitlin Potter | |
| There are always going to be false positives here, unfortunately. But testing different properties will hopefully reduce the number of false positives in a meaningful way, without harming performance too much. Closes #4805 Closes #5675 | |||
| 2014-02-21 | feat(ngHref): bind ng-href to xlink:href for SVGAElement | Caitlin Potter | |
| This change makes the ngHref directive useful for SVGAElements by having it bind to the xlink:href attribute rather than the href attribute. Closes #5904 | |||
| 2014-02-21 | fix($http): do not add trailing question | Boris Serdyuk | |
| Closes #6342 | |||
| 2014-02-21 | fix($http): send GET requests by default | Pawel Kozlowski | |
| Fixes #5985 Closes #6401 | |||
| 2014-02-21 | docs(*): fix anchors for members in api docs | Peter Bacon Darwin | |
| 2014-02-21 | docs(ngMock.$interval): fix return description | Sadaoui Abderrahim | |
| Closes #6384 | |||
| 2014-02-20 | docs(ngSubmit): reference correct object ($scope) in example. | James Roome | |
| Switched from this to $scope. It's confusing using $scope and this interchangeably. Closes #6375 | |||
| 2014-02-20 | docs(core): add note that isObject returns true for arrays | cnlevy | |
| Closes #6353 | |||
| 2014-02-20 | docs(ngMock): document method ngMock.$interval#cancel() | Sadaoui Abderrahim | |
| I have been looking around and was not able to find any informations on how to clear the $interval but reading the source code, sharing is caring! Closes #6367 | |||
| 2014-02-19 | docs(modules): remove unused {@installModule} tags | Peter Bacon Darwin | |
| 2014-02-19 | docs($routeProvider): fix indentation | Steven Petryk | |
| Closes #6345 Somebody accidentally padded a list with one-too-many indentations, which caused the actual documentation page to render incorrectly. This should fix it. | |||
| 2014-02-18 | fix(jqLite): make jqLite('<iframe src="someurl">').contents() return iframe ↵ | Caitlin Potter | |
| document, as in jQuery This is a very tiny change to make behaviour consistent with jQuery. Closes #6320 Closes #6323 | |||
| 2014-02-18 | docs(ngClass): Explain all 3 ways how to use ngClass | Brad Williams | |
| Closes #6324. | |||
| 2014-02-18 | style: remove ws and enfore no-trailing-ws jscs rule | Igor Minar | |
| 2014-02-18 | docs($q): fixup dgeni ngdoc annotations for $q methods | Caitlin Potter | |
| Just a tiny fixup, that's all. Closes #6317 | |||
| 2014-02-18 | docs($interpolate): correct small typo | Paul Dijou | |
| 2014-02-17 | docs(bike-shed-migration): convert doctype and names | Stéphane Reynaud | |
| To keep the same logic as the commit https://github.com/angular/angular.js/commit/2e641ac49f121a6e2cc70bd3879930b44a8a7710 | |||
| 2014-02-16 | chore(ngPluralize): remove useless docs heading | Matias Niemelä | |
| 2014-02-16 | docs(NgModelController): don't run contenteditable example on FF | Peter Bacon Darwin | |
| 2014-02-16 | docs(*): fix jshint issues in examples | Peter Bacon Darwin | |
| 2014-02-16 | chore(e2etests): fix a browser check which was actually assigning the parameter | Julie | |
| 2014-02-16 | docs(api): escape params that have <object> in their type | Peter Bacon Darwin | |
| Really the doc-gen process should escape there but for now this should stop the layout from breaking. | |||
| 2014-02-16 | docs($locationProvider): tag as a provider rather than object | Peter Bacon Darwin | |
| 2014-02-16 | docs(content): fix bad links | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngHref): fix example that navigates away from the page | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngRoute): ask for examples to have their base[href] fixed | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngHref): don't run the breaking protractor test | Peter Bacon Darwin | |
| 2014-02-16 | test(docs-app-e2e): refactor test inline with new docs app | Peter Bacon Darwin | |
| The links to code elements have now changed: api/ng.directive:ngClick -> api/ng/directive/ngClick. Examples now run inside iframes, so we need to instruct Protractor to switch to the example iframe. | |||
| 2014-02-16 | docs(ngShowHide): fix icons in example | Peter Bacon Darwin | |
| The protractor tests were failing because the spans containing the icons were not displaying anymore. | |||
| 2014-02-16 | docs(examples): fix example dependencies | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngSanitize): add dependency on angular-sanitize to example | Peter Bacon Darwin | |
| 2014-02-16 | docs(injector): move angular.injector to the ng module | Peter Bacon Darwin | |
| Even though it is defined in the auto folder, it makes more sense for this function to appear in the ng module in the docs. | |||
| 2014-02-16 | chore(protractor tests): fix up e2e tests | Julie | |
| 2014-02-16 | chore(protractor-generator): add dgeni processor for protractor | Julie | |
| 2014-02-16 | docs(bike-shed-migration): fix url-based links refs to AUTO module | Peter Bacon Darwin | |
| 2014-02-16 | docs(bike-shed-migration): fix invalid </file name=""> HTML in examples | Peter Bacon Darwin | |
| 2014-02-16 | docs(ngResource): fix over-length line | Peter Bacon Darwin | |
