aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2014-02-21perf($cacheFactory): skip LRU bookkeeping for caches with unbound capacitySekib Omazic
Fixes #6193 Closes #6226
2014-02-21fix($location): parse query string when path is empty in hashbang modeCaitlin 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-21fix(input): use ValidityState to determine validityCaitlin 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-21fix(isElement): reduce false-positives in isElement testsCaitlin Potter
Complimentary change to match changed $parse behaviour.
2014-02-21fix($parse): reduce false-positives in isElement testsCaitlin 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-21feat(ngHref): bind ng-href to xlink:href for SVGAElementCaitlin 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-21fix($http): do not add trailing questionBoris Serdyuk
Closes #6342
2014-02-21fix($http): send GET requests by defaultPawel Kozlowski
Fixes #5985 Closes #6401
2014-02-21docs(*): fix anchors for members in api docsPeter Bacon Darwin
2014-02-21docs(ngMock.$interval): fix return descriptionSadaoui Abderrahim
Closes #6384
2014-02-20docs(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-20docs(core): add note that isObject returns true for arrayscnlevy
Closes #6353
2014-02-20docs(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-19docs(modules): remove unused {@installModule} tagsPeter Bacon Darwin
2014-02-19docs($routeProvider): fix indentationSteven 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-18fix(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-18docs(ngClass): Explain all 3 ways how to use ngClassBrad Williams
Closes #6324.
2014-02-18style: remove ws and enfore no-trailing-ws jscs ruleIgor Minar
2014-02-18docs($q): fixup dgeni ngdoc annotations for $q methodsCaitlin Potter
Just a tiny fixup, that's all. Closes #6317
2014-02-18docs($interpolate): correct small typoPaul Dijou
2014-02-17docs(bike-shed-migration): convert doctype and namesStéphane Reynaud
To keep the same logic as the commit https://github.com/angular/angular.js/commit/2e641ac49f121a6e2cc70bd3879930b44a8a7710
2014-02-16chore(ngPluralize): remove useless docs headingMatias Niemelä
2014-02-16docs(NgModelController): don't run contenteditable example on FFPeter Bacon Darwin
2014-02-16docs(*): fix jshint issues in examplesPeter Bacon Darwin
2014-02-16chore(e2etests): fix a browser check which was actually assigning the parameterJulie
2014-02-16docs(api): escape params that have <object> in their typePeter Bacon Darwin
Really the doc-gen process should escape there but for now this should stop the layout from breaking.
2014-02-16docs($locationProvider): tag as a provider rather than objectPeter Bacon Darwin
2014-02-16docs(content): fix bad linksPeter Bacon Darwin
2014-02-16docs(ngHref): fix example that navigates away from the pagePeter Bacon Darwin
2014-02-16docs(ngRoute): ask for examples to have their base[href] fixedPeter Bacon Darwin
2014-02-16docs(ngHref): don't run the breaking protractor testPeter Bacon Darwin
2014-02-16test(docs-app-e2e): refactor test inline with new docs appPeter 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-16docs(ngShowHide): fix icons in examplePeter Bacon Darwin
The protractor tests were failing because the spans containing the icons were not displaying anymore.
2014-02-16docs(examples): fix example dependenciesPeter Bacon Darwin
2014-02-16docs(ngSanitize): add dependency on angular-sanitize to examplePeter Bacon Darwin
2014-02-16docs(injector): move angular.injector to the ng modulePeter 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-16chore(protractor tests): fix up e2e testsJulie
2014-02-16chore(protractor-generator): add dgeni processor for protractorJulie
2014-02-16docs(bike-shed-migration): fix url-based links refs to AUTO modulePeter Bacon Darwin
2014-02-16docs(bike-shed-migration): fix invalid </file name=""> HTML in examplesPeter Bacon Darwin
2014-02-16docs(ngResource): fix over-length linePeter Bacon Darwin
2014-02-16docs(sce): fix invalid @name tagsPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): let markdown deal with extenal linksPeter Bacon Darwin
It is problematic to use {@link} tags with external links because the markdown parser converts them to links for us before we parse the @links. This means that the following tag: ``` {@link http://www.google.com Google} ``` get converted to: ``` {@link <a href="http://www.google.com/"></a> Google} ``` Our {@link} parser then converts this to: ``` <a href="<a">&lt;</a>href="http://www.google.com/"></a> Google} ``` which is clearly a mess. The best solution is not to use {@link} tags for external links and just use the standard markdown syntax: ``` [Google](http://www.google.com) ``` In the long run, we could look into configuring or modifying `marked` not to convert these external links or we could provide a "pre-parser" processor that dealt with such links before `marked` gets its hands on it.
2014-02-16docs(bike-shed-migration): convert <doc:...> examples to <example>...Peter Bacon Darwin
2014-02-16docs(sce): fix reference to $sceDelegateProviderPeter Bacon Darwin
2014-02-16docs(all): convert <pre>/</pre> snippets to GFM snippetsCaitlin Potter
2014-02-16docs(bike-shed-migration): convert doctype and namesPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): move ng module doc into Angular.jsPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): Add missing module tagPeter Bacon Darwin
The generator is able to imply the module from the containing folder for most files but these are in the ng module but are stored at the root folder.
2014-02-15fix(numberFilter): convert all non-finite/non-numbers/non-numeric strings to ↵Sergei Z
the empty string The previous code for filtering out non-finite numbers was broken, as it would convert `null` to `0`, as well as arrays. This change fixes this by converting null/undefined/NaN/Infinity/any object to the empty string. Closes #6188 Closes #6261