aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-02-03chore(release): cut v1.2.11 releasev1.2.11jenkins
2014-02-03docs(changelog): release notes for 1.2.11Tobias Bosch
2014-02-03fix(ngResource): don't append number to '$' in url param value when encoding URICaitlin Potter
Previously, if a URL parameter value included a $, it would replace the dollar sign with a literal '$1' for mysterious reasons. Using a function rather than a replacement string circumvents this behaviour and produces a more expected result. Closes #6003 Closes #6004
2014-02-03docs(animations): ngClass usage should link to ngClass documentationAlan Rubin
Fixing reference to ngClass documentation Closes #6089
2014-01-31fix(http): make jshint happyIgor Minar
2014-01-31fix($http): update httpBackend to use ActiveXObject on IE8 if necessaryJorg
window.XMLHttpRequest is not always available in IE8 despite it not running in quirks mode, in which case Angular should be using the ActiveXObject instead. Just checking the browser version is taking too many shortcuts. Closes #5677 Closes #5679
2014-01-31docs(guide/templates.css-styling): fix "`{{}}`"Stéphane Reynaud
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page Closes #5950
2014-01-31fix($q): make $q.reject support `finally` and `catch`Lucas Galfasó
Add support for the functions `finally` and `catch` to the promise returned by `$q.reject` Closes #6048 Closes #6076
2014-01-31fix($compile): retain CSS classes added in cloneAttachFn on asynchronous ↵Caitlin Potter
directives Previously, classes added to asynchronous directive elements during the clone attach function would not persist after the node is merged with the template, prior to linking. This change corrects this behaviour and brings it in line with synchronous directives. Closes #5439 Closes #5617
2014-01-31chore(travis): remove BrowserStack credentialsVojta Jina
Closes #5596
2014-01-31fix(filterFilter): don't interpret dots in predicate object fields as pathsIgor Minar
Closes #6005 Closes #6009
2014-01-30Edited the 'Flushing HTTP requests' sectionShawn Flahave
Minor grammatical edits in the Flushing HTTP requests section.
2014-01-30fix(docs): clarify doc for "args" in $broadcast and $emitBrad Williams
Closes #6047.
2014-01-30chore(build): add jscs code style check to our buildIgor Minar
Closes #6062
2014-01-30chore(grunt): sort the grunt task load statementsIgor Minar
2014-01-29docs($provide): return instance of Ping, rather than constructorClark Pan
Updating $provide.service method docs The previous example provided for the service method did not work. I've updated the example to a working example. I think this version of the example will probably make more sense to most people, and the factory method would be a better place for this sort of example. Closes #6008
2014-01-29docs(compile/nodomevents): fix typo ng-mode -> ng-modelManan
correcting directive name to ng-model instead of ng-mode in nodomevents.ngdoc Correcting use of ng-model directive Closes #6036
2014-01-28test(docs): convert example end to end doc tests from scenario runner to ↵Julie
protractor Thanks to jeffbcross, petebacondarwin, btford, jdeboer, tbosch for contributions! Closes #6023
2014-01-28docs(cookbook): remove the cookbook docsJulie
The cookbook docs are now superceded by the guide. They are no longer available in any menus and the only way to find them is to search for them. Remove! Closes #5967
2014-01-27fix(mocks): refactor currentSpec to work w/ Jasmine 2John Papa
Closes #5662
2014-01-27docs(triaging.md): update the 'PRs plz!' label nameIgor Minar
2014-01-27style(triaging.md): removing wsIgor Minar
2014-01-27chore(docs): remove note about removing disqusBrian Ford
2014-01-26docs(select): rephase note on ngOptionsDavid Nelson
added 'an' and 'the' to ngOptions sentence Closes #5993
2014-01-26docs(ngSwitch): fixed typo 'choses' to 'chooses'David Nelson
Closes #5992
2014-01-24chore(release): update cdn versionjenkins
2014-01-24chore(release): start v1.2.11 (1.2.11)jenkins
2014-01-24chore(release): cut v1.2.10 releasev1.2.10jenkins
2014-01-24docs(changelog): release notes for 1.2.10Matias Niemelä
2014-01-24docs(search): make sure the forward slash doesn't focus on search while on ↵Matias Niemelä
another input element Closes #5969
2014-01-24feat($animate): provide support for a close callbackMatias Niemelä
Closes #5685 Closes #5053 Closes #4993
2014-01-23docs(guide/filter): link to an example of a filter unit testBrian Ford
2014-01-23docs(ngdoc): ensure module installation docs are accuratePeter Bacon Darwin
The ngMock module is built into a package called angular-mocks, which is not named consistently and the docs were giving invalid info. Closes #5810
2014-01-22fix(a): don't preventDefault on click when SVGAElement has an xlink:href ↵Caitlin Potter
attribute Before this change, an SVGAElement with an xlink:href attribute and no href or name attribute which was compiled by the angular HTML compiler would never be clickable, due to the htmlAnchorDirective calling event.preventDefault() due to the missing href attribute. This change corrects this behaviour by also testing the xlink:href attribute if the element in question is determined to be an SVG anchor tag (with the href property having type SVGAnimatedString) Closes #5896 Closes #5897
2014-01-22refactor(externs): move Closure Externs back to Closure code repositoryMartin Probst
While Closure Compiler generally recommends to maintain the externs for projects together with their source, this has not worked well for AngularJS: - Changes to externs must be tested; they can break clients. AngularJS has no testing infrastructure for this. - Changes mostly come from users inside of Google and are much more easily submitted together with the code using them within Google's repository. This change deletes the externs here and adds a README.closure.md to document the change. They will be added back to Closure Compiler in a separate submit. Closes #5906
2014-01-22docs(ngRoute): grammar correctionAllon Hadaya
grammar: occurs -> occur Closes #5937
2014-01-22style($interval): remove ws and replace comma with semicolonIgor Minar
2014-01-22test(doc:protractor): turn off animation for doc end to end tests to speed ↵Julie
things up
2014-01-22docs(ngMock): $log.error property contains messages from $log.error, not ↵gabrielbrasil
$log.log Closes #5932
2014-01-21fix(input): use Chromium's email validation regexpCaitlin Potter
This change uses the regexp from Chromium/Blink to validate emails, and corrects an error in the validation engine, which previously considered an invalid email to be valid. Additionally, the regexp was invalidating emails with capital letters, however this is not the behaviour recomended in the spec, or implemented in Chromium. Closes #5899 Closes #5924
2014-01-21docs(tutorial): update step_12.ngdocmatthewhintzen
This time I feel good about this modification to the document, the code listing on the tutorial page for the animation.js DID NOT match what was actually IN the file for that branch. Updated tutorial to reflect actual contents of file Closes #5922
2014-01-21docs(changelog): remove reverted commit from 1.2.9Narretz
Closes #5868
2014-01-21docs(guide/directive): clarify attr object definitionIgor Minar
Closes #5884
2014-01-21style(guide/directive): remove wsIgor Minar
2014-01-21chore(docs): add spacing to tutorial buttonsJan Hancic
Added 5px of right margin to tutorial buttons (Previous, Live demom ...). Closes #5901
2014-01-21docs(select): add callout style for a noteBrian Ford
2014-01-21docs(select): add object comparison warningDan Matthews
2014-01-21fix(ngRoute): pipe preceding route param no longer masks ? or * operatorCaitlin Potter
Before this change, ```js $routeProvider.when('/foo/:bar|?', { ... }); ``` would not have the expected effect --- the parameter would not be optional, and the pipe would not be included in the parameter name. Following this change, the presence of the pipe operator will typically cause an exception to be thrown due to the fact that the generated regexp is invalid. The net result of this change is that ? and * operators will not be masked, and pipe operators will need to be removed, although it's unexpected that these are being used anywhere. Closes #5920
2014-01-21docs(tutorial): remove 'going forward' nonsenseGeorge Cox
Closes #5914 time/space dimension error
2014-01-21docs(tutorial): fix grammarGeorge Cox
Closes #5909