| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-18 | feat(strict mode): adding strict mode flag to all js files | Igor Minar | |
| the flag must be in all src and test files so that we get the benefit of running in the strict mode even in jstd the following script was used to modify all files: for file in `find src test -name "*.js"`; do echo -e "'use strict';\n" > temp.txt cat $file >> temp.txt mv temp.txt $file done | |||
| 2011-07-18 | feat(strict mode): turn on ECMAScript 5 strict mode | Igor Minar | |
| - add 'use strict'; statement to the prefix file - configure closure compiler to use the ES5 strict mode - strip all file-specific strict mode flags after concatination Closes #223 | |||
| 2011-07-18 | fix(strict mode): fix all issues discovered by strict mode and unit/e2e tests | Igor Minar | |
| 2011-07-18 | chore(closure-compiler): upgrading to v20110615 | Igor Minar | |
| 2011-07-18 | doc(angular.annotate): properly disable doc snippet to avoid compiler warnings | Igor Minar | |
| 2011-07-18 | doc(misc): fixing typos in docs | Igor Minar | |
| 2011-07-18 | refactor($browser): hide startPoll and poll methods | DiPeng | |
| Breaks $browser.poll() method is moved inline to $browser.startpoll() Breaks $browser.startpoll() method is made private Refactor tests to reflect updated browser API Closes #387 | |||
| 2011-07-17 | refactor(docs): run e2e tests with and without jquery | Di Peng | |
| - e2e tests will run index.html (without jquery) and with index-jq.html(with jquery). - many small changes to make e2e tests work withough JQuery as we discover problems that were previously hidden by using real JQuery. | |||
| 2011-07-17 | style(jqLiteSpec): add space | Di Peng | |
| 2011-07-17 | feat(jqlite): added show(),hide() and eq() methods to jqlite | Di Peng | |
| - add those three methods to jqlite | |||
| 2011-07-18 | style(injector): remove extra semicolon | Igor Minar | |
| 2011-07-16 | doc(ng:include): improve the doc example to avoid confusion | Igor Minar | |
| 2011-07-16 | fix(doc): fix all broken links | Igor Minar | |
| 2011-07-16 | doc(css): add '#content-list .level-4' css | Igor Minar | |
| 2011-07-16 | doc(ngdoc): add 'this' and 'returns' section for methods | Igor Minar | |
| 2011-07-16 | doc(ngdoc): fix usage format for functions bolted onto services | Igor Minar | |
| 2011-07-16 | test(ngdoc): add test for @ngdoc function | Igor Minar | |
| 2011-07-16 | test(ngdoc): fix a typo in the @deprecated spec | Igor Minar | |
| 2011-07-16 | test(ngdoc): fix failing tests | Igor Minar | |
| 2011-07-16 | doc(angular.mock.service.$browser): add xhr docs | Di Peng | |
| 2011-07-14 | chore(configs): Add missing files to jstd config | Vojta Jina | |
| Add jstd-scenario-adapter files into jstd configs (jquery, coverage). Remove angular.prefix, sufifix from exclude, as they don't have to be there. They are not included, because of *.js mask. | |||
| 2011-07-14 | chore(scripts): add test-jquery.sh for running unit tests with jQuery | Vojta Jina | |
| 2011-07-13 | fix(ng:class): preserve classes added post compilation | Di Peng | |
| - make sure ng:class preserve classes added after compilation Closes #355 | |||
| 2011-07-13 | refactor($browser.xhr): use $browser.addJs for JSONP | Igor Minar | |
| There is no reason why we shouldn't reuse $browser.addJs for JSONP requests. | |||
| 2011-07-13 | fix($browser.addJs): make addJs jQuery compatible | Igor Minar | |
| Change addJs implementation to avoid use of jQuery because of issues that affect angular-ie-compat.js. See inlined comment for more info. | |||
| 2011-07-13 | fix($browser.xhr): properly delete jsonp callbacks | Igor Minar | |
| 2011-07-13 | fix(ie-compat): escape \ in regexp | Igor Minar | |
| 2011-07-13 | style(ie-compat): improved generated ie compat code | Igor Minar | |
| 2011-07-13 | fix(bootstrap): Fix bootstrap on IE<8 | Vojta Jina | |
| No reason for including ie-compat in bootstrap, it's included during angularInit. Fix including ie-compat even for production. | |||
| 2011-07-13 | doc($route): fix $route example and couple of typos | Vojta Jina | |
| Rewrite $route example a bit, as it required $location and $route services to be eager published in the root scope. Fix small typos in formatter and ng:options docs. | |||
| 2011-07-12 | fix:jqLite: Set event.target on IE<8 | Vojta Jina | |
| IE<8's Event has not target property - it has srcElement property. Fix that to be consistent as jQuery. | |||
| 2011-07-12 | fix:jqLite: Normalize non-existing attributes to undefined as jQuery | Vojta Jina | |
| jqLite was returning null, but jQuery returns undefined | |||
| 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 | |||
