aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-04-11docs(guide/concepts): wording changeBrent Morrow
2013-04-11docs(guide/expression): wording changesBrent Morrow
2013-04-11docs(guide/directives): give more details about directive declarationLuc Morin
2013-04-11docs(guide/filters): document multiple arguments syntaxColin Kahn
Add example of using a filter with that accepts multiple arguments.
2013-04-11docs(angular-mocks): fix wordingBrent Morrow
2013-04-11docs($inject): wording changeBrent Morrow
2013-04-11docs($compile): improve docsDavid Sanders
2013-04-11docs(guide): updates for legacy IE7 supportBrian Campbell
- note re: id="ng-app" to bootstrap/IE partials - added doctype/xmlns to markup - add cond comment re: json2/3 to markup
2013-04-11chore(release): start 1.0.7 monochromatic-rainbow iterationIgor Minar
2013-04-11docs($http): fix a typoChad Whitacre
2013-04-11chore(docs): Fixed incomplete mergeTakashi Matsuo
2013-04-06docs(concespts): correct spelling and remove unnecessary wordHeath Matlock
2013-04-04docs(changelog): add release notes for 1.1.4 and 1.0.6Igor Minar
2013-04-04chore(release): cut 1.0.6 universal-irreversibility releasev1.0.6Igor Minar
2013-04-04chore(docs): correct few unclosed elementsMisko Hevery
Conflicts: src/ng/filter/filter.js
2013-04-04docs(guide): add missing closing div tagFelipe Lahti
2013-04-04docs(guide): fix typo in DI. angualar -> angularFelipe Lahti
2013-04-04docs(mocks): fix typosGert Goet
Conflicts: src/ngMock/angular-mocks.js
2013-04-04docs(directive): fix typoSrinivas Kusunam
2013-04-04docs(controller): improve $controller function doc readabilityMatthew McComb
Improved $controller function doc readability.
2013-04-04fix(mock): prevent NPE when module definition outside of it.Misko Hevery
2013-04-04Update forms.ngdocJames deBoer
docs(forms): Fixed a typo. render -> $render
2013-04-04chore($ngLocale): refactor slurper & parse extended datetime symbolsChirayu Krishnappa
2013-04-04chore($ngLocale): generate ngLocale files from the Closure code (includes ↵Chirayu Krishnappa
datetimesymbolsext.js)
2013-04-04refactor(ngRepeat): make use of declared variableMark Chapman
Rename unused arrayLength variable to arrayBound and use it inside loop
2013-04-04docs($resource): improve installation sectionIgor Minar
2013-04-04docs($resource): Added an installation section.Ciro Nunes
2013-04-03chore(karma): upgrade karma to 0.8.4Igor Minar
we needed this upgrade to disable animations in scenario runner (karma ships with its own copy of angular-scenario.js which got update in 0.8.4)
2013-04-03chore: use KarmaVojta Jina
2013-04-01docs(ngSwitch): improve the @usage exampleIgor Minar
2013-03-20chore(select): Fix ngOptions regexp capture comment.Arlen Christian Mart Cuss
Off-by-one error.
2013-03-20chore(Angular): remove superfluous fromCharCode functionJavier Mendiara Cañardo
Remove fromCharCode function as it was used only in two inner functions in the code, and its functionality is achieved in several other places by using String.fromCharCode Breaks fromCharCode closure function, String.fromCharCode should be used instead
2013-03-20docs(filter): Using indefinite articleBruno Coelho
This doc was using both definite article and indefinite article at the same time.
2013-03-20docs(directive): Fix entity confusion in example.Arlen Christian Mart Cuss
2013-03-15fix($location): parse FirefoxOS packaged app urlsManuel Braun
FirefoxOS uses special URLs like app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps. Closes #2112
2013-03-15$routeChangeSuccess documentationJamie Mason
I hope this helps someone, I ran into some issues when following the API as described - handlers of this event receive 3 arguments, not 2. Although this is mentioned [elsewhere](http://docs.angularjs.org/api/ng.$rootScope.Scope#$on) it's not clear when viewing the docs for this behaviour in isolation.  The first argument is an Event Object, not the current route. The previous route argument can also be omitted on occasions.
2013-03-15feat(docs): Add Improve this doc link in each doc page, which links to the ↵Shyam Seshadri
edit mode of that file in github
2013-03-14fix(timezone): correct timezone date filter for 1/2 hour offsetsSujeet Pillai
2013-03-14Fix failing test in IE 10Shyam Seshadri
2013-03-12docs($injector): correct misuse of $injectArlen Christian Mart Cuss
$inject was used where $injector was appropriate; confusing and misleading.
2013-03-11chore(Gruntfile): run webserver on 0.0.0.0Igor Minar
... so that we can access it from local VMs. The security risk of doing this is very low since only the current working directory is being made accessible to everyone. There is also an option to run a local firewall, which is a better way to secure the developer's machine anyway.
2013-03-11fix($location): correctly rewrite html5 url to hashbang urlThibault Leruitte
In situations where path() matched basepath and we needed to convert from html5 url to hashbang url, the $location service considered the url to be already rewritten, which resulted in an error.
2013-03-08docs(ngCloak): update the CSS rule with data-ng-cloakChristian Vuerings
2013-03-08chore($ngLocale): Generate ngLocale files from the Closure code.Chirayu Krishnappa
2013-03-08docs($injector): remove extranneous 'the' from injector docsJason Morrison
2013-03-08docs(directive): minor typo fixNiel de la Rouviere
Changed "obeject" to "object"
2013-03-08test($route): add tests for matching 'otherwise' routesIgor Minar
2013-03-08fix($route): make nextRoute.$route privateIgor Minar
the `nextRoute` object available in `$routeChangeStart` handler accidentaly leaked property which pointed to the route definition currently being matched. this was done just for the internal needs of the `$route` implementation and was never documented as public api. Some confusion arouse around why the $route property was not always available on the `nextRoute` object (see #1907). The right thing for us to do is to prefix the property with $$ for now and refactor the code to remove the property completely in the future. Application developers should use the `nextRoute` object itself rather than its `$route` property. The main diff is that nextRoute inherits from the object referenced by $route. BREAKING CHANGE: in $routeChangeStart event, nextRoute.$route property is gone. Use the nextRoute object instead of nextRoute.$route. Closes #1907
2013-03-06feat(angular.bootstrap): support deferred bootstrapJulie
This features enables tools like Batarang and test runners to hook into angular's bootstrap process and sneak in more modules into the DI registry which can replace or augment DI services for the purpose of instrumentation or mocking out heavy dependencies. If window.name contains prefix NG_DEFER_BOOTSTRAP! when angular.bootstrap is called, the bootstrap process will be paused until angular.resumeBootstrap is called. angular.resumeBootstrap takes an optional array of modules that should be added to the original list of modules that the app was about to be bootstrapped with. Conflicts: src/Angular.js
2013-03-06docs(contribute): add note about running command line as admin on winDave Geddes