aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-09-18docs(ngShowHide): fix typoRoberto Bonvallet
2013-09-18docs(guide/$location): describe workaround for collocated appsAsh
When using Angular in the root of a domain with HTML5 URLs where there are links to external paths within the same directory, the `otherwise` route handler will catch these external files. This can be fixed by prefixing '.' onto the links to URLs that should be handled by angular routing. Original Issue: #3520 Example of Fix: http://fiddle.jshell.net/fgHf6/3/ Closes #3555
2013-09-18docs(tutorial/step_03): add info about karma-ng-scenario plug-inZachary Friedman
The existing documentation for this step could have people find themselves unable to run the `e2e-test.sh` script. This note added regarding `karma-ng-scenario` will minimize their confusion and allow people to run the script. Closes #4033
2013-09-18fix(scenario): include "not " in error messages if test is invertedHubert SABLONNIÈRE
Closes #3840
2013-09-17fix($parse): disallow access to window and dom in expressionsChirayu Krishnappa
2013-09-17fix(test): fixed toThrow usageChirayu Krishnappa
2013-09-17fix(build): get promise A+ tests to run on windowsPete Bacon Darwin
2013-09-17docs(input): clarify that `contenteditable` is an HTML5 attributeJames
Closes #3841
2013-09-16docs(ngdoc): fix spelling mistakeTim Statler
Closes #3836
2013-09-16docs(orderBy): fix typo in orderBy.js documentationJesse Palmer
Closes #3838
2013-09-16doc(api): fix grammar in a directive descriptionDave Peticolas
- Add missing words. - Simplify text.
2013-09-16docs(api): fix grammar in ngClick descriptionDave Peticolas
- Add missing word 'directive'. - Add missing word 'an'.
2013-09-15docs(guide/bootstrap): add info about deferred bootstrapPete Bacon Darwin
2013-09-14docs(guide): fix typo in animation docPatrick Drechsler
2013-09-14docs(guide/forms): add comma for clarityts-web
Closes #3985
2013-09-14docs(ngRoute): add missing parameter to $routeChangeErrorUmur Kontacı
The first parameter in $routeChangeError is the event object. Closes #3986
2013-09-13docs(ngSwitch): fix minor typoDaniel Tse
Closes #3993
2013-09-13docs($browser): add jsdoc tags and fix typoBen Tesser
2013-09-13docs(ngController): rephrased the description for clarityDean Sofer
2013-09-13docs($http): add examples when calling $http outside $applyPete Bacon Darwin
Closes #3996
2013-09-13docs($http): explain why $http may not make the request immediatelyDang Nguyen Anh Khoa
I came across this issue today and after researching has found out this thread on so: http://stackoverflow.com/questions/17039998/angular-not-making-http-requests-immediately. It took me quite sometimes to figure out this so I hope the addition in documentation could save somebody else some times and frustration.
2013-09-13fix(ngOptions): ignore object properties which start with $Gowtam Lal
2013-09-13docs(guide/e2e_testing): clarify that .enter searches by ng-modelbrakon
2013-09-11test($browser): correct false positive in ApplicationSpec.jsWoody Peterson
Previously, the check that Application should return a new $window and $document had the arguments reversed in the first call to navigateTo; thus, the subsequent check of inequality of $window and $document in the next navigateTo call would always pass. This corrects the argument order, which makes this test not succeptible to false positives.
2013-09-11fix(ngSanitize): sanitizer should not accept <!--> as a valid commentR. Merkert
According to http://validator.w3.org/ , <!--> is not a valid comment and neither is any comment containing the -- substring.
2013-09-11docs(tutorial/step-10): fix incorrect link to step-8 testscjmling
Closes #3972
2013-09-11docs(ngModel): provide link for best practices.Paxton Hare
Closes #3973
2013-09-11docs(guide/concepts): remove div-clear-tags that break the formattingRandi Hillerøe
Closes #3974
2013-09-11docs(scope): clean up grammar and improve claritySam Dornan
Some typos fixed and grammar improved: - withing -> within - life-cycle -> life cycle - extraneous spaces - grammar mistakes - missing commas - reworded unclear statements Closes #3920
2013-09-11style(ngForm): simplify restrict difference between form and ngFormrodyhaddad
2013-09-11docs(ngChange): remove wrong @restrict and add missing @paramrodyhaddad
2013-09-11docs(ng.directives): add correct @restrict for all ng directivesrodyhaddad
2013-09-11fix(ngdoc.js): update default directive restrict to 'A'rodyhaddad
2013-09-11docs(Attributes): add missing documentation for $observe methodButch Peters
- Add proper ngdoc annotations to existing $observe documentation - Add link to directive guide for usage example of $observe - Add note about $observe function parameter signature Closes #3957
2013-09-10docs($q): clarify what happens when rejectednaorye
Closes #3943
2013-09-10docs(angular.copy): clarify corner casesjakub-bochenski
The behaviour when null or undefined was passed was not clear. The exception thrown when source == destination was not documented. Closes #3946
2013-09-09docs(forms.ngdoc): fix spacing in exampleAnthony Tran
Closes #3930
2013-09-09docs(README): add dashboard linkRichard
Closes #3934
2013-09-09docs(mock.inject): fix typoPete Bacon Darwin
2013-09-07fix(browserTrigger): do not use document.createEvent methodPete Bacon Darwin
Firefox 23 has deprecated the use of createEvent for transition and animation events. We must now use `new TransitionEvent()` and `new AnimationEvent()` if they are available. But of course IE doesn't support this format correctly so we must wrap the attempt in a try block and revert to document.createEvent if necessary..
2013-09-06fix(ngAnimate): check elapsedTime on current eventMatias Niemelä
onAnimationProgress now checks the event's elapsedTime property before checking the originalEvent.elapsedTime property. Use browserTrigger with elapsedTime parameter to trigger animation events
2013-09-06fix(ngScenario): provide event parameters as objectMatias Niemelä
BREAKING CHANGE: browserTrigger now uses an eventData object instead of direct parameters for mouse events. To migrate, place the `keys`,`x` and `y` parameters inside of an object and place that as the third parameter for the browserTrigger function.
2013-09-05refactor($animate): use CSS3 transition/animation events instead of ↵Matias Niemelä
$timeouts to track ongoing animations Closes #3629 Closes #3874
2013-09-05docs(mock.inject): document underscore wrapping syntaxJasonM23
Add a summary describing the ignored underscore syntax sugar helper, with a simple use case example. Closes #3621
2013-09-05docs(tutorial): fix markup for tutorial_03.png diagramAlexander Kaidalov
Closes #3707
2013-09-05docs(tutorial): fix markup for tutorial_04.png diagramAlexander Kaidalov
2013-09-05docs(tutorial): clarify use of inject() in step 9Pete Bacon Darwin
Closes #3718
2013-09-05docs(booleanAttrs): improve parameter docs for boolean attributesJames Daily
Closes #3724
2013-09-05docs(css_styling_guide): add ng-scope and ng-binding classesNick Donohue
I noticed angular was adding these css classes to elements and believe they should be listed in the documentation at this page. The ng-scope class is mentioned in the developer guide, hence the link there, and the ng-binding class is not mentioned anywhere else in the documentation or the guide that I found. Closes #3728
2013-09-05docs(angular.bootstrap): clarify modules parameterPete Bacon Darwin
It was not clear what you could pass to specify modules to load in the `module` parameter of this function. The `modules` parameter takes an array. The main case is to provide a String, which is the name of a "predefined" angular module. The side cases are to provide a Function (or an annotated function in the form of an Array), which will be invoked by the injector as a run block. It is not possible to "define" new modules via this parameter. Closes #3692