aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-01-04docs(form): minor form doc and example fixesJonathan Card
Form documentation fixes: - Fix broken form example in docs - A few small other corrections in form docs.
2013-01-03docs($http): clarify documentation on error status codesPer Rovegård
Modify the documentation for $http to correspond to what Angular considers a success status code. Closes #1693
2012-12-31docs(guide): change example controller to properly call greet method on greeterMatt Hardy
2012-12-19docs(anchorScroll): correct word "location"Murilo da Silva
2012-12-19docs(guide): minor English corrections to the Directive guideJohn Fletcher
2012-12-18docs(directive): old syntaxMiško Hevery
2012-12-18docs(ngView): fix code example (change template to templateUrl)Pawel Kozlowski
Closes #1715
2012-12-14fix($route): correctly extract $routeParams from urlsGonzalo Ruiz de Villa
Routes like '/bar/foovalue/barvalue' matching '/bar/:foo/:bar' now are well mapped in $routeParams to: {bar:'barvalue', foo:'foovalue'} Closes: #1501 Signed-off-by: Gonzalo Ruiz de Villa <gonzaloruizdevilla@gmail.com>
2012-12-12feat(docs): Add angularjs tag to plunks and make privateggoodman
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`. Also, make these generated Plunks private by default.
2012-12-11docs(README.md): add missing 'you' and a commaPeter Evjan
2012-12-10docs(guide): fix injector service code exampleRomain Neutron
Fix syntax and update code to the latest API
2012-12-09docs($resource): document port number escaping and fix typoJuha Syrjälä
2012-12-08docs(tutorial): typo fix commandx -> commandEric Case
2012-12-07docs($q): typo fix - programing -> programmingEric Case
2012-12-07doc(concepts): Fix typo in $render() functionJános Rusiczki
2012-12-06docs($http): fix link typo in $http docJeremy Tymes
Should be $httpBackend instead of $httpBacked Closes #1516
2012-12-06docs(mocks): update src/ngMock/angular-mocks.js documentationFred Sauer
Clarify how to use `$exceptionHandlerProvider.mode('log')` in tests
2012-12-06docs(mocks): fix documentation bug: angular.mock.debugFred Sauer
2012-12-05chore(bootstrap-prettify): update urls to code.angularjs.orgIgor Minar
Closes #1599
2012-12-05fix(select): support optgroup + select[multiple] combo_pants
Closes #1553
2012-12-01fix($injector): provider can now be defined in the array formatSudhir Jonathan
`injector.instantiate` is now called for arrays too, instead of only for functions. Closes #1452
2012-11-30fix($resource): HTTP method should be case-insensitiveSudhir Jonathan
Perform call `angular.uppercase` on all given action methods. Closes #1403
2012-11-30refactor($resource): fix indentation and move a method definitionCezar Berea
Moved Resource.bind out of the actions forEach
2012-11-30fix(Scope): ensure that a scope is destroyed only onceIgor Minar
Due to bd524fc4 calling $destroy() on a scope mupltiple times cases NPE. Closes #1627
2012-11-29docs(directive): correct expression, fix typo and re-wrap linesDaniel Luz
2012-11-29fix(docs): add missing </div> tag to sourceEdit directive templateJohannes Hansen
2012-11-28docs(menu): fix the navbar drop down linksIgor Minar
2012-11-28chore(release): start 1.0.4 bewildering-hair iterationIgor Minar
2012-11-27chore(release): cut the 1.0.3 bouncy-thunder releasev1.0.3Igor Minar
2012-11-27docs(CHANGELOG): release notes for 1.0.3 and 1.1.1 releasesIgor Minar
2012-11-26fix($location): reset $location.$$replace with every watch callRado Kirov
Closes #1111
2012-11-26docs: load angular from CDN only on productionVojta Jina
So that when running the docs locally, eg. during e2e testing, we use the latest build version of angular, rather than the stable one from CDN. This fixes e2e tests running with Testacular.
2012-11-26fix(ngClassOdd/ngClassEven): support shrinking/reordering in repeatersIgor Minar
We need to watch $index in addition to cssClasses because only then we can correctly respond to shrinking or reordered repeaters. Closes #1076
2012-11-26style(jqLite): better variable namesIgor Minar
selector => cssClasses
2012-11-26fix(ngRepeat): support mostly-stable repeating for primitivesIgor Minar
I'm reverting changes that were originally done to ngRepeat to fix #933, because these are now not necessary after the previous changes to keep ngModel always synced with the DOM.
2012-11-26fix(ngModel): sync ngModel state with scope stateIgor Minar
In cases when we reuse elements in a repeater but associate them with a new scope (see #933 - repeating over array of primitives) it's possible for the internal ngModel state and the scope state to get out of sync. This change ensure that the two are always sync-ed up even in cases where we reassociate an element with a different (but similar) scope. In the case of repeating over array of primitives it's still possible to run into issue if we iterate over primitives and use form controls or similar widgets without ngModel - oh well, we'd likely need a special repeater for primitives to deal with this properly, even then there might be cornercases. Closes #933
2012-11-26test(ngRepeat): clean up and improve testsIgor Minar
2012-11-26fix(ngRepeat): attempt to simplify and improve existing fix for #933Igor Minar
I'm keeping this in for future reference. The issue with this solution is that if we shift() the first item in the array, the whole repeater DOM will be rebuilt from scratch, we need to do better than that.
2012-11-26test(ngRepeat): add test for issue #1076Igor Minar
2012-11-26fix(jqLite): fire $destroy event via triggerHandlerIgor Minar
in jQuery 1.8.x the data() data structure is changed and events are not accessible via data().events. Since all we need is to trigger all event handlers, we can do so via triggerHandler() api instead of mocking with the internal jQuery data structures. This fix was originally proposed by PeteAppleton via PR #1512. Closes #1512
2012-11-26feat(jqLite): add triggerHandler()Igor Minar
we need triggerHandler() to become jQuery 1.8.x compatible. this is not fully featured triggerHandler() implementation - it doesn't bother creating new DOM events and passing them into the event handlers. this is intentional, we don't need access to the native DOM event for our own purposes and creating these event objects is really tricky.
2012-11-25docs(CONTRIBUTING.md): add contrib info file for GitHubIristyle
2012-11-25fix(Scope): allow removing a listener during eventVojta Jina
2012-11-25docs(README.md): fix "API Docs" linkKevin Western
use direct link to api docs
2012-11-25docs(api): add ngRequired to input/select/textarea directivesDean Sofer
Closes #1202
2012-11-24fix($cacheFactory): return undefined when removing non-existent entryJeremy Tymes
Instead of throwning an exception, remove should return undefined when cache entry to be removed doesn't exist. Closes #1497
2012-11-24fix($resource): prevent default params to be shared between actionsAdrian Gheorghe
Having a $resource defined as: var R = $resource('/Path', {}, { get: {method: 'GET', params: {objId: '1'}}, perform: {method: 'GET'} }); was causing both actions to call the same URI (if called in this order): R.get({}); // => /Path?objId=1 R.perform({}); // => /Path?objId=1
2012-11-22docs(): Fix a couple of typos in the documentationKris Jenkins
2012-11-22docs(guide/concepts): some typo/grammar fixesDave Clayton
2012-11-22docs(guide/directive): fix typoJohn Hume