aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06chore(ngdocs): replace google closure library with a NPM moduleMatias Niemelä
2013-06-06fix(ngdoc): fix the node warnings that show up during buildMatias Niemelä
2013-06-06feat(ngdocs): provide documentation for the new ngRepeat repeater syntaxMatias Niemelä
2013-06-06chore(AngularPublic): remove angular.noConflict featureMatias Niemelä
2013-06-06chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSyncIgor Minar
2013-06-06chore(grunt): add autotest:modules targetIgor Minar
2013-06-06refactor($route): pull $route and friends into angular-route.jsIgor Minar
$route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804
2013-06-04docs(guide/unit-testing): fix typoJared Forsyth
2013-06-04docs(guide/injecting_controllers): add a hint in exampleJared Forsyth
Add a hint to tell the user that they need to click 3 times before an alert is shown.
2013-06-04docs(ngTransclude): fix outdated scope definition in exampleMarcin Wosinek
2013-06-04docs(guide/unit-testing): fix controller test examplePete Bacon Darwin
2013-06-04docs(Angular.js): clarify ngApp usageRobbie Ferrero
2013-06-04docs(angular-mocks): fix typo in exampleRobb Shecter
fromJSON() should be fromJson()
2013-06-04docs(sanitize): add @description sectionAlan Klement
2013-06-04docs(index): make menu links relativeSiddique Hameed
Before the Develop drop down menu items were hard coded with an absolute url, which meant that they did not work correctly on local or ci server builds.
2013-06-04docs(ngClass): clarify the use of object mapLuc Morin
2013-06-04docs(guide/concepts): add comment as a type of directiveEhsan Ghandhari
2013-06-04docs(guide/understanding_model): improve example consistencyRobb Shecter
2013-06-04docs(guide/compiler): fix some minor language errorsManuel Kiessling
2013-06-04docs(guide/di): fix some small grammatical issuesAlex Young
2013-06-04docs(validate-commit-msg): fix incorrect commentJens Rantil
If you `cd` into the repo, `validate-commit-msg.js` will be in the root of it.
2013-06-04docs(input): provide explanation of how ngModel will affect the local scopeLuc Morin
2013-06-04docs(guide): format snippets of code in plain textEduardo Garcia
2013-06-04docs(overview.ngdoc): clarify wordingadamshaylor
2013-05-31fix(ngController): fix indentation bug which causes example to mess upMatias Niemelä
2013-05-30chore(docs): add reference to the blogLucas Galfasó
Add a reference to the blog at the documentation.
2013-05-30fix(jqLite): Added optional name arg in removeDataJeff Cross
jQuery's API for removeData allows a second 'name' argument to just remove the property by that name from an element's data. The absence of this argument was causing some features not to work correctly when combining multiple directives, such as ng-click, ng-show, and ng-animate.
2013-05-30fix($animator): ensure $animator calculates the highest duration + delay for ↵Matias Niemelä
and transitions and animations together
2013-05-30docs(): Rectify animator.animate documentationGias Kay Lee
2013-05-30feat(ngdocs): provide support for inline variable hintingMatias Niemelä
2013-05-28feat($compile): support multi-element directiveMisko Hevery
By appending directive-start and directive-end to a directive it is now possible to have the directive act on a group of elements. It is now possible to iterate over multiple elements like so: <table> <tr ng-repeat-start="item in list">I get repeated</tr> <tr ng-repeat-end>I also get repeated</tr> </table>
2013-05-24feat(ngError): add error message compression and better error messagesIgor Minar
- add toThrowNg matcher
2013-05-24test(matchers): update toThrow matcherVojta Jina
2013-05-23docs(guide/unit-testing): add expression exampleSiddique Hameed
* Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it
2013-05-23feat($swipe): Refactor swipe logic from ngSwipe to $swipe service.Braden Shepherdson
This new service is used by the ngSwipeLeft/Right directives, and by the separate ngCarousel and swipe-to-delete directives which are under development.
2013-05-23feat($resource): expose promise instead of only $thenAlexander Shtuchkin
- Instance or collection have `$promise` property which is the initial promise. - Add per-action `interceptor`, which has access to entire $http response object. BREAKING CHANGE: resource instance does not have `$then` function anymore. Before: Resource.query().$then(callback); After: Resource.query().$promise.then(callback); BREAKING CHANGE: instance methods return the promise rather than the instance itself. Before: resource.$save().chaining = true; After: resource.$save(); resourve.chaining = true; BREAKING CHANGE: On success, promise is resolved with the resource instance rather than http response object. Use interceptor to access the http response object. Before: Resource.query().$then(function(response) {...}); After: var Resource = $resource('/url', {}, { get: { method: 'get', interceptor: { response: function(response) { // expose response return response; } } } });
2013-05-23fix(jqLite): correctly monkey-patch core jQuery methodsMichał Gołębiowski
When real jQuery is present, Angular monkey patch it to fire `$destroy` event. This commit fixes two issues in the jQuery patch: - passing a selector to the $.fn.remove method (only fire `$destroy` on the matched elements) - using `$.fn.html` without parameters as a getter (do not fire `$destroy`)
2013-05-23docs(input): add missing ngChange directive for email typeDavid Bennett
All other input types already have it.
2013-05-22docs(changelog): fix changelog formattingIgor Minar
2013-05-22docs(changelog): add note about animation breaking changeIgor Minar
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736
2013-05-22docs(guide/directive): clarify directive priorityJens Rantil
Fixes #2644.
2013-05-22chore(release): start 1.1.6 spooky-giraffe iterationIgor Minar
2013-05-22chore(release): cut the 1.1.5 triangle-squarification releasev1.1.5Igor Minar
2013-05-22docs(CHANGELOG.md): release notes for 1.1.5 and 1.0.7 releasesIgor Minar
2013-05-21docs(Angular.js): add missing @returns to extend()Joakim Blomskøld
2013-05-21docs(tutorial): fix the float issue with the improve docs buttonMatias Niemelä
2013-05-21docs(ngScenario): provide examples for element(...).query(fn)Ben Ripkens
element(selector, label).query(fn) is a very useful function, yet barely explained. The developer guide should show how this function can be used to conditionally execute behavior and assertions.
2013-05-21doc($compile): clarify compile function return valueJens Rantil
If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713