aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-01-06chore: strict deps Karma and pluginsVojta Jina
So that we have a better control when updating Karma.
2014-01-06chore(docs): remove uppercase heading stylingMatias Niemelä
Closes #5593
2014-01-06refactor(animate): remove duplicate lineChris Chua
2014-01-05revert: fix(closure): add Closure externs for angular.$q.Promise.finallyIgor Minar
This reverts commit caeb7402651702cd13df2f1594e9827439a8b760. The commit breaks Google apps because most don't use closure compiler with the ES5 mode flag on. We are investigating a solution...
2014-01-05refactor(filterFilter): simplify code by a ternary op instead of if-elseRoyLING
- use only one IIFE and a ternary op in it, instead of invoking separate IIFEs in if-else (this also completely fixed the same issue closed by PR #3597) - also add a spec to verify usage of '$' property in expression object (e.g. `{$: 'a'}`) Closes #5637
2014-01-05fix(closure): add Closure externs for angular.$q.Promise.finallyDaniel Aden
Closes #4757
2014-01-04docs(rootScope): fix typoKenneth Lynne
Closes #5633
2014-01-04docs(ng/filter/filter): make docs human readableIgor Minar
2014-01-03docs($http): makes clear $httpProvider.defaults are available at run-timeMikeMac
Clarifies some confusion around $http.defaults existing and able to be modified at run-time, for when run-time services may be needed in a transformation. Closes #5559 Closes #5630
2014-01-03docs(ngRepeat): add info about aliasing special properties of ngRepeatWojciech Krzystek
This will safe peoples' time, since ngRepeat's docs, not ngInit's, is the first place where one would search for such info. Closes #5622
2014-01-03style($httpBackend): fix typoBastian Buchholz
2014-01-03fix($parse): fix CSP nested property evaluation, and issue that prevented ↵Brian Nenninger
its tests from failing cspSafeGetterFn incorrectly returned undefined if any of its key parameters were undefined. This wasn't caught by the $parse unit tests because of a timing problem where $ParseProvider was reading the CSP flag before the tests manually set it, so the CSP property evaluation tests never ran. Add test that verifies evaluation of nested properties of multiple lengths. Closes #5591 Closes #5592
2014-01-03chore(release): fix release nameBrian Ford
2014-01-03chore(release): update cdn versionBrian Ford
2014-01-03chore(release): set next release nameTobias Bosch
2014-01-03core(Scope): rename 'debugger' to 'web inspector' to avoid woes with g3 ↵Igor Minar
presubmits
2014-01-03chore(release): start v1.2.8chimney-sweeper
2014-01-03chore(release): cut v1.2.7 releasev1.2.7chimney-sweeper
2014-01-03docs(CHANGELOG): add v1.2.7 changesMatias Niemelä
2014-01-03fix($httpBackend): don't delete xhr.onreadystatechange otherwise Safari :-OIgor Minar
2014-01-03fix($animate): ensure class-based animations are always skipped before ↵Matias Niemelä
structural post-digest tasks are run Closes #5582
2014-01-03chore: set Karma version to 0.11.11Vojta Jina
Temporary reverting Karma, as 0.11.12 is causing some problems.
2014-01-03docs($filter): fix wrong param order in docroyling
fix wrong param order in doc for filter comparator doc function param for filter expression Closes #5365 Closes #5611
2014-01-02docs(\$sniffer): fix minor typoTiago Ribeiro
Closes #5544
2014-01-02fix($resource): prevent URL template from collapsing into an empty stringGias Kay Lee
if url template would result in an empty string, we should make a request to '/' instead. Closes #5455 Closes #5493
2014-01-02fix(ngShow/ngHide, ngIf): functions with zero args should be truthyBrian Ford
Previously, expressions that were a function with one or more arguments evaluated to true, but functions with zero arguments evaluated to false. This behavior seems both unintentional and undesirable. This patch makes a function truthy regardless of its number of arguments. Closes #5414
2014-01-02fix(httpBackend): fix 'type mismatch' error on IE8 after each requestIgor Minar
2014-01-02fix($httpBackend): use ActiveX XHR when making PATCH requests on IE8Igor Minar
IE8's native XHR doesn't support PATCH requests, but the ActiveX one does. I'm also removing the noxhr error doc because nobody will ever get that error. Closes #2518 Closes #5043
2014-01-02docs(error/ngRepeat/dupes): fix typoDrew Perttula
Closes #5610
2014-01-02fix($location): $location.path() behaviour when $locationChangeStart is ↵Sebastian K
triggered by the browser Fixed inconsistency in $location.path() behaviour on the $locationChangeStart event when using back/forward buttons in the browser or manually changing the url in the address bar. $location.path() now returns the target url in these cases. Closes #4989 Closes #5089 Closes #5118 Closes #5580
2014-01-02style($browser): remove ws, fix typoIgor Minar
2014-01-02fix($browser): remove base href domain when url begins with '//'Caitlin Potter
This change prevents an incorrect appBase url from being calculated when the <base> href's domain begins with '//'. Closes #5606
2014-01-02fix(ngRepeat): allow for more flexible coding style in ngRepeat expressionGias Kay Lee
With this change it's possible to split the ng-repeat expression into multiple lines at any point in the expression where white-space is expected. Closes #5537 Closes #5598
2014-01-02docs($compile): fix typoDavid Burrows
Closes #5599
2014-01-02fix(Scope): don't let watch deregistration mess up the dirty-checking digest ↵Igor Minar
loop Closes #5525
2014-01-02test(rootScope): reorganize $watch deregistration specs into a describeIgor Minar
2014-01-02fix($httpBackend): Ignore multiple calls to onreadystatechange with readyState=4Tobias Bosch
On mobile webkit `onreadystatechange` might by called multiple times with `readyState===4` caused by xhrs that are resolved while the app is in the background. Fixes #5426.
2014-01-02fix(animate): remove trailing `s`Olivier Louvignes
2014-01-01docs: moar analytics for all md filesIgor Minar
2014-01-01docs(README): add analyticsIgor Minar
2013-12-31test(compileSpec): fix broken build on FFIgor Minar
FF 26.0 now throws: "TypeError: NodeList doesn't have an indexed property setter." when we try to assign to `childNodes[1]`, since this test still works properly on Chrome and the issue being tested is not a cross-browser issues, I'm just making the patchability check more robust instead of trying to figure out how to make this test fully pass on FF.
2013-12-31test(injector): add missing test for #5577Igor Minar
Add a missing test for fix that was merged via #5577
2013-12-31fix($injector): remove INSTANTIATING entry when doneMatt Ginzton
getService flags services as INSTANTIATING while it calls their provider factory, in order to detect circular dependencies. If the service is instantiated correctly, the INSTANTIATING flag is overwritten with the actual service. However, if the service is not instantiated correctly, the INSTANTIATING flag should still be removed, or all further requests for this service will be mis-detected as a circular dependency. Closes #4361 Closes #5577
2013-12-31fix(input): use apply on change event only when one isn't already in progressIgor Minar
Closes #5293
2013-12-30chore(release.sh): push both the release commit and tagIgor Minar
2013-12-30fix(input): prevent double $digest when using jQuery trigger.Michał Gołębiowski
If an event was performed natively, jQuery sets the isTrigger property. When triggering event manually, the field is not present. Manually triggered events are performed synchronously which causes the "$digest already in progress" error. Closes #5293
2013-12-30fix($location): re-assign history after BFCache back on Android browserkimwz
Closes #5425
2013-12-27perf(Scope): limit propagation of $broadcast to scopes that have listeners ↵Karl Seamon
for the event Update $on and $destroy to maintain a count of event keys registered for each scope and its children. $broadcast will not descend past a node that has a count of 0/undefined for the $broadcasted event key. Closes #5341 Closes #5371
2013-12-27fix(ngRoute): instantiate controller when template is emptyCaitlin Potter
Before this change, $route controllers are not instantiated if the template is falsy, which includes the empty string. This change tests if the template is not undefined, rather than just falsy, in order to ensure that templates are instantiated even when the template is empty, which people may have some reason to do. This "bug" was reported in http://robb.weblaws.org/2013/06/21/angularjs-vs-emberjs/, as a "gotcha" for AngularJS / ngRoute. Closes #5550
2013-12-27fix($sanitize): consider `size` attribute as valid/allowed attributeBrady Isom
The "size" attribute gets set on <font> elements when using HTML5 rich text editors, or elements with the contenteditable attribute, that rely on the 'fontSize' command (execCommand). Closes #5522