| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-12 | fix:jqLite: Fix binding to more events separated by space | Vojta Jina | |
| The var eventHandler was defined outside forEach loop, so registering more events caused calling listeners registered by the last one. Regression: elm.bind('click keyup', callback1); elm.bind('click', callback2); elm.bind('keyup', callback3); Firing click event would have executed callback1, callback3 ! | |||
| 2011-07-12 | test(ng:repeat): add tests for $position for small arrays/objects | Igor Minar | |
| 2011-07-11 | doc:widget: improve angular.widget docs | Igor Minar | |
| 2011-07-10 | docs:compile: Just fixing some typos in the docs | Vojta Jina | |
| 2011-07-08 | docs:template: rename <angular/> to AngularJS | Igor Minar | |
| 2011-07-08 | docs:css: remove bullet points from tutorial sidebar | Igor Minar | |
| 2011-07-08 | docs:css: fix indentation for pre element | Igor Minar | |
| 2011-07-08 | prepare the jiggling-armfat iteration | Igor Minar | |
| 2011-07-06 | fix:injector: make injector compatible with Rhino (HtmlUnit) | Mårten Dolk | |
| 2011-07-02 | doc:dependencies: add /api/ prefix to dependency links | Igor Minar | |
| 2011-07-02 | doc:changelog: small changelog fixes | Igor Minar | |
| 2011-07-01 | fix:exceptionHandler mock: should not specify dependencies | Igor Minar | |
| also added a test for this mock service | |||
| 2011-07-01 | fix:jstd.conf: explicitly specify script load order | Igor Minar | |
| Originally we relied on a lot of globbing, which resulted in angular-mocks being loaded before normal services, so we never overwrote services like $exceptionHandler with mocks. Explict definition guarantees that we don't fall into the loading order trap, but requires us to remember to update the jsTestDriver.conf file every time we add/rename/remove a js file. | |||
| 2011-07-01 | fix:$browser mock: defer.flush() should flush all fns | Igor Minar | |
| 2011-06-30 | doc:markup: wrong spelling for Vojta, all DI's fault. | DiPeng | |
| 2011-06-30 | preparing the 0.9.18 jiggling-armfat iteration | Igor Minar | |
| 2011-06-30 | docs:include: improve docs | Igor Minar | |
| 2011-06-30 | feat:build: better build/pkg/ dir structure | Igor Minar | |
| rake package now produced directory structure that can be uploaded to the ftp server as is without manual changes | |||
| 2011-06-30 | docs:changelog: add release date for 0.9.17 | Igor Minar | |
| 2011-06-30 | cutting the 0.9.17 vegetable-reanimation relasev0.9.17 | Igor Minar | |
| 2011-06-30 | docs:changelog: updating release notes | Igor Minar | |
| 2011-06-30 | fix:docs: fix $orderBy example and e2e test | Igor Minar | |
| 2011-06-30 | fix:docs: properly distinguish between being offline and 404 | Igor Minar | |
| 2011-06-30 | feat:$xhr: provide access to $xhr header defaults | Igor Minar | |
| $xhr header defaults are now exposed as $xhr.defaults.headers.common and $xhr.default.headers.<httpmethod>. This allows applications to configure their defaults as needed. This commit doesn't allow headers to be set per request, only per application. Per request change would require api change, which I tried to avoid *for now*. | |||
| 2011-06-27 | fix:tests: replace angular.annotate with annotate | Igor Minar | |
| forgot to fix tests in 6aee2938a71c99fdd35639725c6900347999f658 | |||
| 2011-06-27 | test:ng#class: added a better unit test for ng:class | Di Peng | |
| 2011-06-27 | fix:testabilityPatch: remove annotate since it's not public | Igor Minar | |
| 2011-06-27 | docs:release notes: prepare for notes for 0.9.17 release | Igor Minar | |
| 2011-06-27 | fix:docs: css lint fixes | Igor Minar | |
| 2011-06-27 | fix:$browser: Use document.createElement to create JSONP script tag | Vojta Jina | |
| Creating <script> tags would require a lot of extra work if we want all browsers to load and execute these scripts. We decided to not implement that in jqLite. See #369 for more information. Closes #369 | |||
| 2011-06-25 | fix:docs: Fix sitemap generator to use doc.id instead of doc.name | Di Peng | |
| doc.id should be used instead of doc.name, otherwise links are wrongly generated | |||
| 2011-06-23 | fix:repeat: fix ending comment tag | Igor Minar | |
| 2011-06-23 | feat:filter.date: add day/month string format support | Di Peng | |
| Support new date format, specifically day of week/Month of year in string e.g. {{ someDate | data:"EEE, MMM d, yyyy" }} -> "Wed, Jul 10, 2011" Closes #396 | |||
| 2011-06-23 | fix:ng:repeater - fix $position when collection size changes | Misko Hevery | |
| 2011-06-23 | style:ApiSpecs - clean up test names to match jasmine conventions | Misko Hevery | |
| 2011-06-23 | fix:$orderBy - return unsorted array if no predicate | Misko Hevery | |
| Closes #399 | |||
| 2011-06-23 | fix:scope - reintroduce support for eager services | Di Peng | |
| 8cad231 broke $eager services Problem is that the injector.eager function is not invoked when a new scope is created. Added a test to make sure service is eagerly instantiated. Closes #403 | |||
| 2011-06-23 | test:angular.service - add tests for $inject | Di Peng | |
| 2011-06-21 | Update fixed docs content (guide) | Vojta Jina | |
| Couple of typos fixed: * indentation * batchLogbatchLog -> batchLog * start periodic checking * missing brace | |||
| 2011-06-17 | Fix failing unit tests in IE7 (Binder, select widget) | Vojta Jina | |
| The fix does not change any production code, we only need to ignore couple of attributes that IE7 should not display: * value attribute for LI * selected attribut for SELECT Simplified condition in compiler test, this should have been part of f9f0905f4ad7b1d0bb9b606a6d25fb1f88354a78 | |||
| 2011-06-17 | Fix compiler test for IE9 | Vojta Jina | |
| Older IEs serialize html uppercased, but IE9 does not... Would be better to expect case insensitive, unfortuntaly jasmine does not allow to user regexps for throw expectations. Closes #392 | |||
| 2011-06-17 | Remove obsolete scenario folder | Vojta Jina | |
| * moved scenario e2e tests in test/scenario/e2e folder * remove $location test | |||
| 2011-06-16 | Added ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected to ↵ | Di Peng | |
| markup.js. Also added coresponding descriptions live examples and tests for each directive to be displayed on the website. Closes #351 | |||
| 2011-06-16 | Update docs from googledocs | Vojta Jina | |
| * fixed typo in tutorial step-10 * revert cookbook/buzz example to use googlebuzz user | |||
| 2011-06-15 | Fix test for scenario.Application - should remove old iframe | Vojta Jina | |
| This behavior was changed by e83465c362c53ac7451183a775456f3112262f6e So this commit should have been part of e83465c362c53ac7451183a775456f3112262f6e Also removed hiding and navigating to about:blank as it makes no sense now... | |||
| 2011-06-15 | docs - various doc fixes | Igor Minar | |
| 2011-06-15 | docs - stripping extra new lines | Igor Minar | |
| 2011-06-15 | Replaced double line break with single when text is fetched from Google Docs | Di Peng | |
| Closes #384 | |||
| 2011-06-15 | Updated docs/cookbook/buzz from gdocs | Di Peng | |
| With couple of fixes: * indentation + code formatting * use ng:href, ng:src * change UserId to misko.hevery so it will work now | |||
| 2011-06-15 | Fix scenario runner on IE7, IE8 | Misko Hevery | |
| * add ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected * fetch fixed cookbook/advancedform (use ng:disabled) * fire keydown instead of change on input * remove frame when test finishes | |||
