aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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
2014-01-21docs(guide/controller): fix duplicated "and" typoStéphane Reynaud
Remove the second instance of the word "and" from the docs where it was duplicated.
2014-01-21fix($parse): do not use locals to resolve object propertiesLucas Galfasó
Do not use the locals when performing a field access in an angular expression. Closes #5838 Closes #5862
2014-01-19docs(ngEventDirs): document priority of event directivesAbraham
The general assumption is that if @priority is not defined, the priority is 0. BUT it's not necessarily harmful to be explicit about this. Closes #5852
2014-01-18docs($http): remove outdated part about $http outside of $apply phaseChristoph Burgdorf
This removes some outdated advice which no longer is true against the latest angular version. The information about unit testing with ngMocks remains, because it's always good to have information like that easily found. This little snippet is not worded perfectly, and is not a very good example unit test, so additional work is needed here. Relates to #5206 Closes #5485
2014-01-18docs($provide): fix Markdown formatting for provider methodVlad GURDIGA
Indentation made Markdown parser think that it’s a block of code. Closes #5446
2014-01-18docs($q): note that function okToGreet is expected to be defined in exampleletsmakesense
the function okToGreet wasn't defined, so this example wouldn't work properly. I've decided that instead of adding unrelated code to the example, it should just be noted that the function is expected to be defined in the lexical scope. Closes #5878
2014-01-18docs(ngInit): ng-init is an attribute/class directive, not an element directiveBastian Buchholz
As discussed in comments on https://github.com/angular/angular.js/commit/42ec95ebae716c81087684b55ed8fa8c13888abc#commitcomment-5109829, ngInit is not an element directive, so @clkao's example should reflect this. Closes #5879
2014-01-18docs(ngInit): note precedence when used with filtersChia-liang Kao
Clears up expression priority issue Closes #3869 Closes #5873
2014-01-18docs(services): use $log service in example consistently with $log APIJoshua Flanagan
The $log provider returns an object and not a function, so this example, which appears to be using the $log provider, should call it as it would be called in a real-world application. Closes #5875
2014-01-17docs(directive): link to directive registration api functionBen McCann
Originally, this issue was regarding documenting `restrict: 'CM'` in the directive guide, but it was pointed out that the restrict documentation is covered in the $compile documentation. Because of this, a link was simply added to the $compile documentation. However, the wording suggests that it's actually linking to the directive registration function, in $compileProvider, so the docs will link there instead. There is a link only a paragraph below to the $compile documentation, so this does not hurt. Closes #5516
2014-01-17docs(api): adds links to top level guidesJeff Jewiss
The main api docs page is probably the main landing page for many devs looking to learn angular, so linking to the main guide pages would likely help. Closes #5869
2014-01-17docs(input): document ngValue directiveAbdessamad Idrissi
Extend the example with ng-value showing how to deal with default checked radio boxes. Closes #5654
2014-01-17docs($sce): correct documentation for angular 1.2.0Cameron Spear
Include mention of `ngSanitize` (and add it to the example), as well as removing (and clarifying if needed) references to `ng-html-bind-unsafe`. Closes #5551
2014-01-17docs(ngChange): clarify difference between ng-change DOM change eventAndreas Gruenbacher
The ng-change event triggers immediately, which makes a difference for text input fields and text areas, where the JavaScript onchange event would only be called at the end of the change. Closes #5640
2014-01-17docs(contributing): add instructions to install grunt-cli/bower globally on ↵Bruce Davidson
unix systems Closes #5814 Closes #5811
2014-01-17docs(tutorial): add missing semicolon to code snippet刘朋飞
Lets encourage people to use semicolons in javascript :> Closes #5834
2014-01-16docs(tutorial): fix typoNeil Rubens
Correction misspelling: easist -> easiest Closes #5850
2014-01-16docs(animations): renamed animate-show-hide to sample-show-hideRob Wormald
This always throws me off - I think it helps to make it clear that the class name is arbitrary, and what matters is the .ng-etc classes. Closes #5848
2014-01-16docs(tutorial): reference node command before scripts\web-server.jsLeniel Macaferi
Amended to also clarify this note in the mac/linux tab. Closes #5845
2014-01-15docs(concepts): fix typos in explanationakerekes
Code uses module names with '2' as suffix while the explanation used the module names without the suffix. The diagram is correct but also does not suffix the module names. Closes #5567
2014-01-15docs(ngShowHide): make a note of values considered to be falsyFoxandxss
This issue has been a focus of problems for some users and we discussed it on the IRC that it should be at least documented. ~Amended the style to use bootstrap notes, I think overall it looks better and catches the eyes more easily. However there are no anchor links to these, if these are necessary they can be added later. Closes #3436 Closes #5762
2014-01-15docs(README): fix typoJohn Lannon
Closes #5813
2014-01-15docs(guide/directive): rephrase for consistencyRoy Ling
- referring to `=attr` rather than `=prop` is consistent with note under example with =customerInfo - change `prop` to `attr` (basically `prop` refers to property in JS object, `attr` is for HTML tag) - change the function name in description to match the name in code example Closes #5786
2014-01-15chore(release): update cdn versionjenkins
2014-01-15chore(release): start v1.2.10 (1.2.10)jenkins
2014-01-15chore(release): cut v1.2.9 releasev1.2.9jenkins
2014-01-15docs(changelog): release notes for 1.2.9Peter Bacon Darwin
2014-01-15fix(ngMock): ensure ngAnimate isn't a required mockMatias Niemelä