aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-03-01additional fixes for the angular.compile docsIgor Minar
2011-03-01linking function should return bound scopeIgor Minar
angular.compile()() returns {scope:scope, view:view}, this isn't useful at all and only makes tests more verbose. Instead, this change makes the linking function return scope directly and if anyone needs the linked dom there are two ways to do it documented in angular.compile. other changes: - moved angular.compile docs to the compiler so that they are closer to the compiler - fixed some typos and updated angular.compile docs with the new return value
2011-03-01On some linux systems, such as Ubuntu, /bin/sh symlinks to dash, which ↵Luther Goh
causes issues. Symlinking to bash may be more prudent
2011-02-27adding an extra injector specIgor Minar
- added a spec for dependency graph resolution - also simplyfying cache presence check
2011-02-27$cookie factory fn should not run $evalIgor Minar
2011-02-25Added delay parameter to the $defer serviceMisko Hevery
2011-02-25Corrected an issue where properties inherited from __proto__ show up in ↵Misko Hevery
ng:repeat. Closses #112
2011-02-23docs.css should not inline all pragraphs, only those in listsIgor Minar
2011-02-22gdocs.js should add dropped leading spaceIgor Minar
2011-02-22Rewrite of the "Contributing" section of the DevGuideJanet Davies
2011-02-22fixing typo in guide.overviewIgor Minar
2011-02-22add class on any namespace elmentsMisko Hevery
2011-02-22gdocs.js should strip trailing whitespace in imported docsIgor Minar
2011-02-22Rewrite of the overview section of the dev guideKenneth R. Culp
2011-02-22fix documentation for ieMisko Hevery
2011-02-19correct hashchange event registration on windowMisko Hevery
2011-02-19fix test which fails on CI build, because the image has sizeMisko Hevery
2011-02-18add missing example files for temp.htmlIgor Minar
2011-02-18Remove ng:watchMisko Hevery
Closes#143
2011-02-18replace smart-quotes with regular quotesMisko Hevery
2011-02-18Auto create $inject property form the argument names. Any arg starting with ↵Misko Hevery
$ or _ will be injected
2011-02-18script for dowlnoading docs from google docsMisko Hevery
2011-02-18corrected new lines in @linkMisko Hevery
2011-02-17resources should not over-encode chars in url pathIgor Minar
- added encodeUriSegment that properly encodes only those chars that URI RFC requires us to encode - modified Resource to use encodeUriSegment
2011-02-17make all built-in services lazyIgor Minar
now that we require DI everywhere, we don't need any of these services to be eager - they get initialized when and only when they are requested.
2011-02-16Changed the angular.compile(element)(scope[, cloneAttachNode])Misko Hevery
2011-02-16reformated multiline trinary expressions to have a leading ?/:.Misko Hevery
2011-02-16rewrite of JQuery lite implementation, which now better supports selected setsMisko Hevery
2011-02-16Change API angular.compile(element)([scope], [element/true])Misko Hevery
2011-02-16refactored quickClone to cloneNode and exposed it on jQueryMisko Hevery
2011-02-16remove $init on scope from applying compilation templateMisko Hevery
Closes #40
2011-02-16remove dom manipulation API from compilerMisko Hevery
2011-02-16Add public API to retrieve scope from element.Misko Hevery
2011-02-16allow jquery to be declared after angular in the script loading orderMisko Hevery
2011-02-16added missing semicolonsMisko Hevery
2011-02-16improving the $document docsIgor Minar
Closes #276
2011-02-16Small spelling and grammar fixes in documentation.Anthony Lieuallen
2011-02-15split up services into individual filesIgor Minar
- split up services into files under src/service - split up specs into files under test/service - rewrite all specs so that they don't depend on one global forEach - get rid of obsolete code and tests in ng:switch - rename mock $log spec from "$log" to "$log mock"
2011-02-14docs - adding cross links from directives to guide.expressionIgor Minar
2011-02-10$resource should encode url params with encodeURIComponentIgor Minar
2011-02-10adding testimonials page to docsIgor Minar
this is just a temporary move so that the content doesn't get lost. in the long term we want this to be part of the main site.
2011-02-09corrected missbehaved exampleMisko Hevery
2011-02-09Update Dev Guide Downloading content (to be moved to Contributing later).Janet Davies
2011-02-09Cleanup of the Getting Started guideKenneth R. Culp
2011-02-09added omingrafle file for docsMisko Hevery
2011-02-08renaming fag.ngdoc to faq.ngdocIgor Minar
2011-02-08preparing the 0.9.11 thought-implanter iterationIgor Minar
2011-02-08cutting the 0.9.11 snow-maker releasev0.9.11Igor Minar
2011-02-08release notes for 0.9.11 snow-makerIgor Minar
2011-02-07markdown pre-processor should strip all the extra indentationIgor Minar
- split trim into trim and indent - merged my indentation code with trim - cleaned up some small issues