aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-02-14docs(changelog): release notes for 1.2.13v1.2.13Brian Ford
2014-02-14style(animate): remove wsIgor Minar
2014-02-14fix($animate): ensure $animate doesn't break natural CSS transitionsMatias Niemelä
BREAKING CHANGE: ngClass and {{ class }} will now call the `setClass` animation callback instead of addClass / removeClass when both a addClass/removeClass operation is being executed on the element during the animation. Please include the setClass animation callback as well as addClass and removeClass within your JS animations to work with ngClass and {{ class }} directives. Closes #6019
2014-02-14pref($animate): only trigger DOM callbacks if registered on the element ↵Matias Niemelä
being animated BREAKING CHANGE: Both the `$animate:before` and `$animate:after` DOM events must be now registered prior to the $animate operation taking place. The `$animate:close` event can be registered anytime afterwards. DOM callbacks used to fired for each and every animation operation that occurs within the $animate service provided in the ngAnimate module. This may end up slowing down an application if 100s of elements are being inserted into the page. Therefore after this change callbacks are only fired if registered on the element being animated.
2014-02-14pref($animate): group all asynchronous requests into one shared bufferMatias Niemelä
2014-02-14chore(jqLite): expose the _data lookup function to angular.elementMatias Niemelä
2014-02-14fix($compile) support templates with table content root nodesCaitlin Potter
If the first element in a template is a <tr>, <th>, <td>, or <tbody> tag, the HTML compiler will ensure that the template is wrapped in a <table> element so that the table content is not discarded. Closes #2848 Closes #1459 Closes #3647 Closes #3241
2014-02-13fix(input): don't apply textInput to <input type="file">Tim Whitbeck
textInput shouldn't be applied to file inputs to ease writing of custom file input directives. This change prevents file inputs from instantiating the text input parser/formatter pipelines. Closes #6247 Closes #6231
2014-02-13Merge pull request #6245 from brianhall/masterNaomi Black
Google logo in AngularJS.exports to vector format.
2014-02-13docs(logo): change logo to vector format in .eps fileBrian Hall
Browser: Other Component: docs Regression: no Closes issue #6092
2014-02-12fix(input): setViewValue on compositionendCaitlin Potter
Because of a4e6d962, model is not updated on input/change between the compositionstart and compositionend events. Unfortunately, the compositionend event does not always happen prior to an input/change event. This changeset calls the listener function to update the model after a compositionend event is received. Closes #6058 Closes #5433
2014-02-12docs($interpolate): fix link to $interpolateProvider#endSymbolCaitlin Potter
The markup here was missing the methods_ prefix and behaved incorrectly. Closes #5802
2014-02-12docs($location): fix link to $rootScope.Scope.$onCaitlin Potter
Previously missing the methods_ prefix. Closes #5798
2014-02-12docs(currencyFilter): added missing line break in currency doc ptor testJames Kyle
Closes #6229
2014-02-12docs(guide/$location): correct link to HTML5 draft section 5.5 (history api)Stéphane Reynaud
Previous link url is no longer served, responds with bad link (error 404). This change corrects the URL to point to section 5.5 of the draft. The old URL appears to have been removed from service in 2012. Corrects the link to "History API" Closes #6225
2014-02-12docs(input): document NgModelController.$isEmpty parameters / return valueMathieu Tricoire
Closes #6224
2014-02-11docs(tutorial): inject phonecapApp module into unit testJason Schapiro
When I was reading this doc I was thinking "but what about phonecatApp?" and when I looked in the file from the step-11 branch there it is. Should be reflected in the docs as well Closes #6209
2014-02-11chore(dependencies): upgrade kriskowal/q to version ~1.0.0Caitlin Potter
CI builds on travis occasionally freak out because of the recursive use of process.nextTick, which has been deprecated in Node relatively recently, to be replaced with setImmediate. Unfortunately, this change does not resolve the issue. However, it does not hurt, either. Closes #6161
2014-02-11docs(core): add closing tag to ngApp directive exampleJesse Palmer
added missing closing tag to ngApp example. Closes #6066
2014-02-11docs(jqLite): link to jQuery.fn.bind/unbind docs rather than ↵Evgeniy Tkachenko
jQuery.fn.on/off docs Сorrect link. Closes #6171
2014-02-11feat(filterFilter): support deeply nested predicate objectsCaitlin Potter
Due to 339a165, it became impossible to filter nested properties of an object using the filterFilter. A proposed solution to this was to enable the use of nested predicate objects. This change enables the use of these nested predicate objects. Example: ```html <div ng-repeat="it in items | filter:{ address: { country: 'Canuckistan'}}"></div> ``` Or ```js $filter('filter')(items, { address: { country: 'Canuckistan' } }); ``` Closes #6215 Related to #6009
2014-02-11refactor(ngTransclude): use transclusion function passed in to linkDaniel Tabuenca
Since we now pass in the transclusion function directly to the link function, we no longer need the old scheme whereby we saved the transclude function injected into the controller for later use in during linking. Additionally, this change may aid in correcting a memory leak of detached DOM nodes (see #6181 for details). This commit removes the controller and simplifies ngTransclude. Closes #5375 Closes #6181
2014-02-11docs(guide/index): replace "shold" to "should"Stéphane Reynaud
Replace "shold" to "should" Closes #6216
2014-02-10style(guide): remove wsIgor Minar
2014-02-10docs(guide): add new resource linksJeremy Likness
Added a link to 10 reasons to use and online courses for Angular Closes #6194
2014-02-10docs(ngSubmit): ngSubmit also works with the `data-action`/`x-action` attributesJames Wagoner
The documentation states only the "action" attribute triggers this, which is incorrect. When using the attribute "data-action" (as for AJAX control, attempting to bypass the "action" attribute but still make it obvious what its for), Angular thinks this is also classified as "action" and continues with the page submission. Closes #6196
2014-02-10style(guide/concepts): remove wsIgor Minar
2014-02-10docs(guide/concepts): removing confusing use of hoistingSequoia McDowell
Closes #6207
2014-02-10docs(faq): add link to MIT licenseMark Miyashita
Closes #6197
2014-02-10fix($compile): ensure element transclusion directives are linked with ↵Caitlin Potter
comment element This corrects a complicated compiler issue, described in detail below: Previously, if an element transclusion directive contained an asynchronous directive whose template contained another element transclusion directive, the inner element transclusion directive would be linked with the element, rather than the expected comment node. An example manifestation of this bug would look like so: ```html <div ng-repeat="i in [1,2,3,4,5]"> <div my-directive> </div> </div> ``` `my-directive` would be a replace directive, and its template would contain another element transclusion directive, like so: ```html <div ng-if="true">{{i}}</div> ``` ngIf would be linked with this template content, rather than the comment node, and the template element would be attached to the DOM, rather than the comment. As a result, this caused ng-if to duplicate the template when its expression evaluated to true. Closes #6006 Closes #6101
2014-02-10docs(concepts): Remove pointless `* 1`sSequoia McDowell
Closes #6206
2014-02-10docs(guide/scope): fix a typoVictor Berchet
Signed-off-by: Caitlin Potter <caitpotter88@gmail.com> Closes #6202
2014-02-07refactor(testing): split travis end to end tests into separate jobs for ↵Julie
jquery and jqlite Closes #6159
2014-02-07refactor(doc): separate end to end tests into jquery and jqlite filesJulie
2014-02-07chore(testing): switch Jenkins to test e2e only on chromeJulie
End to end tests will continue to be run on Safari and Firefox on Travis. Closes #6187
2014-02-07chore(release): update cdn versionjenkins
2014-02-07docs(changelog): release notes for 1.2.12v1.2.12Matias Niemelä
2014-02-07revert: refactor(mocks): simplify the `inject` implementationIgor Minar
This reverts commit 64d58a5b5292046adf8b28928950858ab3895fcc. For some weird reason this is causing regressions at Google. I'm not sure why and I'm running out of time to investigate, so I'm taking a safe route here and reverting the commit since it's just a refactoring.
2014-02-07docs(contributing): add code of conductBrian Ford
2014-02-06chore(build): Update closure i18n integrationTobias Bosch
Use git repo as source and use q-io instead of q-fs
2014-02-06chore(testing): de-flake a ngHref test for navigating away from the Angular pageJulie
2014-02-06fix($locale): Minor grammar amends for locale_ltKasparas Galdikas
Closes #6164
2014-02-06docs(misc): fix typo in "getting started" docsasif22
changed "building and application" to "building an application" Closes #6156
2014-02-06docs(injector): correct typo in examplesunderls
$provide misused into $provider maybe this should be corrected I think Closes #6146
2014-02-06chore(travis): remove double bower install to test if it's still neededIgor Minar
We did this due to travis-ci/travis-ci#1293 but since it's possible that this hack is not needed, I'm removing it. If it turns out that we do need it still then we should ping the travis issue and revert this commit
2014-02-06fix(mocks): rename mock.animate to ngAnimateMock and ensure it contains all ↵Matias Niemelä
test helper code for ngAnimate Closes #5822 Closes #5917
2014-02-06fix(mocks): remove usage of $animate.flushNext in favour of queingMatias Niemelä
The flushNext method of testing is difficult and highly coupled with the behavior of ngAnimate's $animate workflow. It is much better instead to just queue all $animate animation calls into a queue collection which is available on the $animate service when mock.animate is included as a module within test code.
2014-02-05docs(angular.forEach): add missing space in testFranziskus Domig
Closes #6130
2014-02-05chore(testing): fix Jenkins breakage due to test directory already being presentJulie
2014-02-05refactor(testing): run end to end tests on separate browsers in parallelJulie