aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-03-24fix(filter.ngdoc): Check if "input" variable is definedv1.2.xRenat Yakubov
By default, "greeting" textfield in this example is prepopulated with "hello" text, but it's pretty easy to copy just filter code to use it in your app. If your textfield is empty while app loads, you'll get an error: "Error: [$interpolate:interr] Can't interpolate: Reverse: {{greeting|reverse}} TypeError: Cannot read property 'length' of undefined". To prevent this, we should check "input" variable, and proceed only in case it is defined. Closes #6819.
2014-03-24chore(release): update cdn versionTobias Bosch
2014-03-24docs(guides/directive): add (') to contractionLuke Eller
add apostrophe (') to contraction
2014-03-24docs($http): fix auth default headers examplecgwyllie
2014-03-24fix(input): don't perform HTML5 validation on updated model-valueg3_v1_2Caitlin Potter
Running html5-validation immediately after model-value is updated is incorrect, because the view has not updated, and HTML5 constraint validation has not adjusted. Closes #6796 Closes #6806
2014-03-22chore(npm-shrinkwrap): update dgeni-packages dependencyPeter Bacon Darwin
2014-03-21chore(CHANGELOG): add notes for 1.2.15v1.2.15Vojta Jina
2014-03-21docs(changelog): remove 1.3 notes from 1.2Vojta Jina
2014-03-21test($rootScope): add assertion to test ensuring that NaN -> NaN does not throwCaitlin Potter
https://github.com/angular/angular.js/commit/fb6062fb9d83545730b993e94ac7482ffd43a62c implements a fix for NaN values causing $watchCollection to throw an infdig error. This change updates the test by adding an assertion which explains what is actually being tested a bit better, and may also provide better information in the event that the test ever fails. Closes #6758
2014-03-21docs(tutorial): correct spelling mistakealexgarrett
2014-03-21docs($document): add a documentation example.Trevor Ewen
The $document docs are pretty empty, and this fills them out a bit. The example itself may not be particularly useful, but it could be improved or removed later. Works for me. Closes #6757
2014-03-21docs($q): add mention of Antroid 2.x browserthorn0
The Android 2.x browser is not ES5-compatible in that it does not allow use of reserved words as property names. This docs fix adds Android to the note to the `$q` docs which already make it known that string property notation should be used when using the `finally` method on `$q`.
2014-03-21fix($rootScope): ng-repeat can't handle NaN values. #4605Sekib Omazic
$watchCollection checks if oldValue !== newValue which does not work for NaN. This was causing infinite digest errors, since comparing NaN to NaN in $watchCollection would always return false, indicating that a change was occuring on each loop. This fix adds a simple check to see if the current value and previous value are both NaN, and if so, does not count it as a change. Closes #4605
2014-03-21fix(orderBy): support string predicates containing non-ident charactersCaitlin Potter
The orderBy filter now allows string predicates passed to the orderBy filter to make use property name predicates containing non-ident strings, such as spaces or percent signs, or non-latin characters. This behaviour requires the predicate string to be double-quoted. In markup, this might look like so: ```html <div ng-repeat="item in items | orderBy:'\"Tip %\"'"> ... </div> ``` Or in JS: ```js var sorted = $filter('orderBy')(array, ['"Tip %"', '-"Subtotal $"'], false); ``` Closes #6143 Closes #6144
2014-03-21fix(ngCookie): convert non-string values to stringCaitlin Potter
Previously, non-string values stored in $cookies would be removed, without warning the user, and causing difficulty debugging. Now, the value is converted to string before being stored, and the value is not dropped. Serialization may be customized using the toString() method of an object's prototype. Closes #6151 Closes #6220
2014-03-21fix(ngTouch): update workaround for desktop Webkit quirkChris Constantin
Fix click busting of input click triggered by a label click quickly following a touch event on a different element, in desktop and mobile WebKit To reproduce the issue fixed by this commit set up a page with - an element with ng-click - a radio button (with hg-model) and associated label In a quick sequence tap on the element and then on the label. The radio button will not be checked, unless PREVENT_DURATION has passed Closes #6302
2014-03-21docs(tutorial/step_05): fix services linkfrandroid
2014-03-21docs(tutorial/step_05): removed stray "a"frandroid
2014-03-21fix(angular.bootstrap): only allow angular to load onceSiddique Hameed
This is hard to test as a unit-test, since it involves the actual loading of angular, but it turns out that it is easy to test using a protractor e2e test. Closes #5863 Closes #5587
2014-03-21chore(utils): fix version number processingPeter Bacon Darwin
The changes to version-info meant that the version being injected into the code at build time was missing the "dot" (patch) version and the release code-name.
2014-03-21style($templateCache): remove trailing whitespaceCaitlin Potter
This was introduced by 2ca6d650e8a13cee28f11c38622cab231787325f, somewhat inexplicably as I had run grunt ci-checks locally. But regardless, this should fix this up.
2014-03-21docs($templateCache): use GFM example format rather than <pre> tagsJesse Palmer
Updated example formatting. Closes #6068
2014-03-21docs(loader): add annotations to exampleEdward Brey
2014-03-21docs($cookies): cookies serializer only supports stringsTyler Kellogg
Closes #6705
2014-03-21docs(errors/$compile/nonassing): update nonassign.ngdocposhest
It might seem obvious that if you don't supply "bind" attribute in this case, you'll get an error, but I feel this is worth adding to the doc. Closes #6725
2014-03-21docs(css): RegExp doesn't have .type-hint-regexp classSekib Omazic
type-hint-regexp gets a nice color closes #6596
2014-03-21docs(module): add link to mentioned resourceGias Kay Lee
Closes #6628
2014-03-21docs(css): Fix word breaks issue in <pre>Gias Kay Lee
Closes #6586
2014-03-21docs(migration): note that services can now return functionswbyoko
This change mostly effects preprocessed javascript.
2014-03-21chore(formatting): removed unnecessary white spacesTakashi Nakagawa
2014-03-21docs(ngView): remove global controller definitionsunicodesnowman
instead use angular modules also fix formatting
2014-03-21docs(tutorial/step_02): add experiment to update controller testNeil Johnston
Add an experiment to update the controller unit test after modifying it with the new model property.
2014-03-21docs(booleanAttrs): fix typoSekib Omazic
2014-03-21docs(tutorial/step_12): link to API docsJan Hancic
2014-03-21docs(ngForm): remove duplicate @param annotationDavid Rogers
When the example for `ngAnimate` was added in commit:3344396, the `@param name` annotation was unintentionally duplicated. Remove this duplicate. Closes #6720
2014-03-21fix(jqLite): traverse `host` property for DocumentFragment in inheritedData()Caitlin Potter
If dealing with a document fragment node with a host element, and no parent, use the host element as the parent. This enables directives within a Shadow DOM or polyfilled Shadow DOM to lookup parent controllers. Closes #6637
2014-03-21docs(ngInclude): make the quote type explicitMark Jones
2014-03-21docs($http): update shortcut method descriptionlinclark
Update docs to reflect that $http no longer requires passing in an HTTP method, as changed in #6401.
2014-03-21docs(ngRoute): remove global controller syntax in the examplebradwheel
2014-03-21docs(triaging): correct information about milestonesIgor Minar
2014-03-21docs(guide/module): remove duplicate wordDenis Parchenko
Closes #6709
2014-03-21docs(runnableExamples): add "edit in Plunker" buttonPeter Bacon Darwin
The "runnableExample.template.html" template overrides the one in the dgeni-packages "examples" package with a similar template that also has a link to a special Plunker URL that can pull in the example from our code.angularjs.org website.
2014-03-21chore(shrinkwrap): grunt-jasmine-node is retrieved from githubPeter Bacon Darwin
2014-03-21docs(misc/contribute): make anchor links work properlyCaitlin Potter
Closes #6706
2014-03-21docs(tutorial): fix broken linkBrian Andersen
On page http://docs.angularjs.org/tutorial/step_05 link is broken. Should point to http://docs.angularjs.org/guide/services NOT http://docs.angularjs.org/guide/dev_guide.services Closes #6714
2014-03-21chore(CHANGELOG.md): add changelog for 1.3.0-beta.3Tobias Bosch
2014-03-21chore: update changelog for 1.3.0-beta.2Jeff Cross
2014-03-21chore(CHANGELOG.md): add input type date PR as breaking changeTobias Bosch
Related to #6630
2014-03-20chore(release): fix angularjs.org cdn scriptTobias Bosch
2014-03-20chore(angularjs.org/publish.sh): align release script with new websitePeter Bacon Darwin
Closes #6690