| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-06-23 | fix:ng:repeater - fix $position when collection size changes | 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-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-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 | 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 | |||
| 2011-06-08 | Should have replaced all instances of element('input[name=something]').val() ↵ | Di Peng | |
| with input('name').val() Closes #376 | |||
| 2011-06-08 | remove ng:format=index | Misko Hevery | |
| 2011-06-08 | Added ng:options directive | Misko Hevery | |
| Closes #301 | |||
| 2011-06-08 | Added prepend() to jqLite | Misko Hevery | |
| 2011-06-08 | Added support for deferring callbacks in time | Misko Hevery | |
| 2011-06-08 | Throw error when compiling multiple roots | Misko Hevery | |
| Closes #338 | |||
| 2011-06-08 | Refactor injector to have invoke method for speed reasons | Misko Hevery | |
| 2011-06-08 | Cleanup parser code to expose smaller API | Misko Hevery | |
| 2011-06-08 | Added HashMap | Misko Hevery | |
| 2011-06-08 | Added nextUid() function for unified way of generating IDs in angular | Misko Hevery | |
| 2011-06-08 | performance improvement of single statement in parser | Misko Hevery | |
| 2011-06-08 | Proper handling of special attributes in jqlite | Misko Hevery | |
| 2011-06-08 | removed jqLite warning | Misko Hevery | |
| 2011-06-08 | fix JSON to match native browser behavior | Misko Hevery | |
| 2011-06-08 | cleanup old closure directives | Misko Hevery | |
| 2011-06-08 | code cleanup: missing ; and indentation | Misko Hevery | |
| 2011-06-08 | Number filter would return incorrect value when fractional part had leading ↵ | Misko Hevery | |
| zeros. | |||
| 2011-06-08 | Remove stray console.log statemente | Misko Hevery | |
| 2011-06-07 | Fix couple of failing e2e tests | Vojta Jina | |
| The reason was recent change in docs url | |||
| 2011-06-06 | yet another docs batch | Igor Minar | |
| 2011-06-06 | another batch of doc fixes from ken | Igor Minar | |
| 2011-06-06 | api doc fixes from ken | Igor Minar | |
| 2011-06-06 | Fix wrong links in source code | Vojta Jina | |
| 2011-06-06 | fixing broken links | Igor Minar | |
| 2011-06-06 | Fix links in docs | Vojta Jina | |
| 2011-06-06 | added input#val method | Di Peng | |
| Closes #237 | |||
| 2011-06-05 | renamed $pause to $sleep AND $wait to $pause | Di Peng | |
| Closes #207 | |||
| 2011-06-03 | fixed opera date.toISOString issue | Di Peng | |
| Closes #365 | |||
| 2011-06-02 | Fix formatError for FF4 and Opera | Vojta Jina | |
| Other browsers prepend "Error: <Exception name>" to stack, but FF4 and Opera do not. So when formatting error we prepend it by hand, when not present... | |||
| 2011-06-02 | Fix IE bug - ng:href | Vojta Jina | |
| ng:href was producing unclickable links, as the event propagation was stopped by 'a' widget All links in regression/issue-352.html were tested in: * Chrome 11 * Opera 11 * Firefox 4 * IE7, IE8 Closes #352 | |||
| 2011-06-02 | Refactor $browser's lazy start polling | Vojta Jina | |
| + unit tests | |||
| 2011-06-02 | Fix hashchange event on IE8 compatibility mode | Vojta Jina | |
| Stupid IE8 in compatibility mode or in IE7 mode returns true for `('onhashchange' in window)`, but does not support hashchange event. Closes #353 | |||
| 2011-06-02 | Fix unit test in IE7 | Vojta Jina | |
| 2011-05-31 | Normalize IE XHR bug (status code 1223 to 204) | Vojta Jina | |
| See http://bugs.jquery.com/ticket/1450 | |||
| 2011-05-19 | Remove trailing white spaces from all source files | Vojta Jina | |
| find . -name "*.js" -print | xargs sed -Ei s/[[:space:]]*$// | |||
| 2011-05-19 | JSTD adapter for running e2e tests | Vojta Jina | |
| Couple of changes into angular.scenario runner: - add autotest config (runs tests when document ready) - update ObjectModel (forwards events) - use only one ObjectModel instance for all outputters - expose error msg and line number in ObjectModel.Spec and ObjectModel.Step - fix generating spec.ids - fix 'html' output so that it does not mutate ObjectModel Couple of changes into docs / generator: - rename copy -> copyTpl - move docs/static into docs/examples (to avoid conflict with jstd proxy) Running all docs e2e tests: ======================================================== 1/ compile angular-scenario, jstd-scenario-adapter >> rake compile 2/ build docs >> rake docs 3/ start jstd server >> ./server-scenario.sh 4/ capture some browser 5/ run node server to serve static content >> node ../lib/nodeserver/server.js 6/ run tests >> ./test-scenario.sh | |||
| 2011-05-19 | XHR should add Content-type header only for POST | Vojta Jina | |
| Sending Content-type header causes JSTD (Jetty) proxy to change GET methods into POST. | |||
| 2011-05-19 | Don't check url (by HEAD request) before navigateTo | Vojta Jina | |
| Removed angular.scenario.Application.checkUrlStatus_ method and these tests: * should call error handler if status check fails * should perform a HEAD request to verify file existence * should call error handler if status code is less than 200 * should call error handler if status code is greater than 299 * should call error handler if status code is greater than 299 | |||
| 2011-05-02 | fix broken link $xhr docs | Igor Minar | |
| 2011-04-26 | fix url validator example | Igor Minar | |
| 2011-04-25 | Fix some typos, missing semi-colons, etc... | Vojta Jina | |
| This is a combination of 4 commits: * Fix some small typos, missing semi-colons, etc. * Fix comment for angular.scenario.SpecRunner.run method * Fixed some missing semi-colons in cookbook * Fixed missing semi-colon in nodeserver/server.js | |||
| 2011-04-22 | fix typo in scenario jsdocs | Igor Minar | |
| 2011-04-16 | Added a bit more documentation to ng:autobind to explain some of the semantics | Craig Tataryn | |
| 2011-04-11 | fix indentation in angular.filter.html examples | Igor Minar | |
