aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-10-25docs(ngIf): fix typoBalázs Suhajda
Closes #4512
2013-10-25docs(tutorial/step-2): add beforeEach to load moduleDanS
The non-global controller test throws an error because the test does not know about the module and so can not find the controller. This change tells the test about the module so the test can find the controller. Closes #4489
2013-10-25style(injectorSpec): fix typo in "it" descriptionArun Israel
Closes #4483
2013-10-25docs(tutorial/step-5): fix wrong link to services guidephamdt
Closes #4477
2013-10-25docs(guide): rewrite guide landing pageBrad Green
Change landing page to include a set of curated links with subject headings as a guide through Angular's docs and other resources. Closes #4470
2013-10-25docs(guide/e2e-testing): remove superfluous block of textMaarten Stolte
The removed block is repeated from the unit-testing guide and appears in an awkward place in this text. Closes #4456
2013-10-25docs(guide/expression): fix duplicate key error in examplemmieszek
The example that demonstrates how to parse expressions can fail if you pass in the same expression twice. By using "track by $index" we can fix this. Closes #4472
2013-10-24chore(grunt): add jshint to the test taskPete Bacon Darwin
It is very easy to let jshint failures slip into the master build if the jshint task is not part of the standard local grunt tasks.
2013-10-24docs(ngClass): fix typoSam Dornan
Closes #4471
2013-10-24docs(rootScope): add example of using a listener function for $watchWesley Cho
Closes #4451
2013-10-24chore(validate-commit-msg.js): increase the max line limit for commit ↵Igor Minar
messages from 70 to 100
2013-10-24style($route): fix line lengthPete Bacon Darwin
2013-10-24fix($animate): skip unnecessary addClass/removeClass animationsMatias Niemelä
Skip addClass animations if the element already contains the class that is being added to element. Also skip removeClass animations if the element does not contain the class that is being removed. Closes #4401 Closes #2332
2013-10-24docs(ngModelController): $parent can help isolate scope directivesbasarat
2013-10-24docs(error/multidir): improve the sentence fluencyCloudDueling.com
Closes #4449
2013-10-24docs($routeProvider): document route.resolve rejectionJosh Schumacher
Add documentation that the $routeChangeError event is fired when a route resolve promise is rejected Closes #4447
2013-10-24docs(select): fix typowiebl
Closes #4433
2013-10-24docs(tutorial/step_00): reword sentence to make senseWalter Higgins
Closes #4429
2013-10-24docs(ngBindHtml): add exampleNicolas Brugneaux
Closes #4427
2013-10-24fix($compile): instantiate controlers when re-entering compilationIgor Minar
When we re-enter compilation either due to async directive templates or element transclude directive we need to keep track of controllers to instantiate during linking. This piece of info was missing when re-entering compilation and that's what this commit fixes. I also reordered the properties in the previousCompileContext object. Closes #4434 Closes #4616
2013-10-24docs(ngNonBindable): fix punctuationDave Peticolas
Closes #4424
2013-10-24docs($provide): Fix typoPete Bacon Darwin
Closes #4420
2013-10-24docs(modulerr): fix typoG.H. Naylor
Closes #4418
2013-10-24docs(tutorial/step-07): fix typoJosh McAdams
Closes #4410
2013-10-24docs(ngController): do not attach a controller twiceTyler McGinnis
A common mistake for beginners is to attach a controller in both the $routeProvider and also in the html document using the ng-controller directive. This change highlights this, to help prevent developers from doing so in the future. Closes #4409
2013-10-24chore(ngdocs): ensure the docs menu changes when browsing a different sectionMatias Niemelä
Closes #4619
2013-10-24fix(input): keep track of min/max attars on-the-flyDmitry Shirokov
Now input[type=button] keeps track of both min and max attrs even if they change over time.
2013-10-23chore(docs): fix jsHint errors with long linesMatias Niemelä
2013-10-23docs(guide/directive,guide/compiler,): drastically improveBrian Ford
2013-10-23chore(ngMocks): shorten the length of the description line to avoid jsHint ↵Matias Niemelä
errors
2013-10-23feat(docs): provide index pages for each angular moduleMatias Niemelä
2013-10-23fix(ngView): ensure the new view element is placed after the old view elementMatias Niemelä
Closes #4362
2013-10-23fix($animate): ensure animations work properly when the $rootElement is ↵Matias Niemelä
being animated Closes #4397 Closes #4231
2013-10-23fix($animate): only cancel class-based animations if the follow-up class ↵Matias Niemelä
contains CSS transition/keyframe animation code Closes #4463 Closes #3784
2013-10-22feat(ngdocs): add forward slash shortcut key for search barMatias Niemelä
2013-10-22fix(ngdocs): remove the side search barMatias Niemelä
BREAKING CHANGE The side search bar on the docs page has been removed in favor of the top search bar.
2013-10-22chore(travis): run jshint task on TravisVojta Jina
2013-10-22style: make jshint happyVojta Jina
2013-10-22chore(grunt): add jshint tasksPete Bacon Darwin
2013-10-22chore(Grunt): use the latest Content-Security-Policy header in csp modeIgor Minar
2013-10-22fix: don't inline css in csp mode.tigbro
Also add `angular-csp.css` to the resulting build.
2013-10-22fix(ngAnimate): fix cancelChildAnimations throwing exceptionGrzegorz Lachowski
fix ngAnimate throwing exception in cancelChildAnimations on deletion of element (ngAnimate's leave decorator) of repeated element when using ng-include on this element. Closes #4548
2013-10-21docs(ngCsp): pretty-format docsIgor Minar
2013-10-21revert(validate-commit-msg): fix incorrect commentDaniel Lamb
Revert 581ec6be7d7e546a1c563906e1877498d7d655a2 since it was not valid. Closes #3952
2013-10-18fix(csp): fix csp auto-detection and stylesheet injectionIgor Minar
When we refactored , we broke the csp mode because the previous implementation relied on the fact that it was ok to lazy initialize the .csp property, this is not the case any more. Besides, we need to know about csp mode during bootstrap and avoid injecting the stylesheet when csp is active, so I refactored the code to fix both issues. PR #4411 will follow up on this commit and add more improvements. Closes #917 Closes #2963 Closes #4394 Closes #4444 BREAKING CHANGE: triggering ngCsp directive via `ng:csp` attribute is not supported any more. Please use data-ng-csp instead.
2013-10-18docs: correct broken linksVojta Jina
This also contains some whitespace corrections by my editor.
2013-10-18chore(docs): generate header ids for better linkingVojta Jina
- generate ids for all headers - collect defined anchors - check broken links (even if the page exists, but the anchor/id does not)
2013-10-18fix($injector): allow a constructor function to return a functionVojta Jina
This change makes `$injector.instantiate` (and thus `$provide.service`) to behave the same as native `new` operator.
2013-10-15docs($rootScope): better document infinite digest and ttlIgor Minar
2013-10-15fix($parse): check function call context to be safeChirayu Krishnappa
Closes #4417