| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-01-18 | improved dump function to atomatically render HTML | Misko Hevery | |
| 2011-01-10 | Rename angular.foreach to angular.forEach to make the api consistent. | Igor Minar | |
| camelcase is used for other angular functions and forEach is also used by EcmaScript standard. - rename the internal as well as the external function name - tweak the implementation of the function so that it doesn't clober it self when we extend the angular object with an object that has a forEach property equal to this forEach function Closes #85 | |||
| 2011-01-07 | change to keydown from keyup; add delayed $updateView | Misko Hevery | |
| - There was a perceived lag when typing do to the fact that we were listening on the keyup event instead of keydown. The issue with keydown is that we can not read the value of the input field. To solve this we schedule a defer call and perform the model update then. - To prevent calling $eval on root scope too many times as well as to prevent drowning the browser with too many updates we now call the $eval only after 25ms and any additional requests get ignored. The new update service is called $updateView | |||
| 2010-12-08 | Fixed failed assignments of form abj[0].name=value | Misko Hevery | |
| Closes #169 | |||
| 2010-12-02 | Closes #170. Corrected the behavior of select when options are ng:repeated | Misko Hevery | |
| - Delete $postEval method, as it was a hack | |||
| 2010-10-27 | Fix failing tests for ie, and mark elements as ng-widget, ng-directive, and ↵ | Misko Hevery | |
| ng-binding | |||
| 2010-10-26 | create HTML sanitizer to allow inclusion of untrusted HTML in safe manner. | Misko Hevery | |
| Sanitization works in two phases: 1) We parse the HTML into sax-like events (start, end, chars). HTML parsing is very complex, and so it may very well be that what most browser consider valid HTML may not pares properly here, but we do best effort. We treat this parser as untrusted. 2) We have safe sanitizeWriter which treats its input (start, end, chars) as untrusted content and escapes everything. It only allows elements in the whitelist and only allows attributes which are whitelisted. Any attribute value must not start with 'javascript:'. This check is performed after escaping for entity (&xAB; etc..) and ignoring any whitespace. - Correct linky filter to use safeHtmlWriter - Correct html filter to use safeHtmlWriter Close #33; Close #34 | |||
| 2010-10-22 | Workaround for http://bugs.jquery.com/ticket/7292 | Misko Hevery | |
| 2010-10-19 | Fix browser triggering in scenario to always do native events. | Misko Hevery | |
| - Also fixed angular.suffix for scenarios - refactored click() to browserTrigger() - Fixed Rakefile with CSS and jQuery | |||
| 2010-10-15 | fixed lint warnings and one flaky test | Misko Hevery | |
| 2010-10-14 | New Angular Scenario runner and DSL system with redesigned HTML UI. | Elliott Sprehn | |
| Uses the Jasmine syntax for tests, ex: describe('widgets', function() { it('should verify that basic widgets work', function(){ navigateTo('widgets.html'); input('text.basic').enter('Carlos'); expect(binding('text.basic')).toEqual('Carlos'); input('text.basic').enter('Carlos Santana'); expect(binding('text.basic')).not().toEqual('Carlos Boozer'); input('text.password').enter('secret'); expect(binding('text.password')).toEqual('secret'); expect(binding('text.hidden')).toEqual('hiddenValue'); expect(binding('gender')).toEqual('male'); input('gender').select('female'); expect(binding('gender')).toEqual('female'); }); }); Note: To create new UI's implement the interface shown in angular.scenario.ui.Html. | |||
| 2010-09-21 | HEAD is now at 10c0151 Fixes on issue when a SELECT has OPTION which are ↵ | Misko Hevery | |
| data bound (ie OPTION has repeater or OPTION.value is bound), then SELECT does not update to match the correct OPTION after the change in model (ie after the OPTION repeater unrolls or OPTION.value is changed.) | |||
| 2010-08-18 | added better handling of ng:format=number | Misko Hevery | |
| 2010-08-12 | Fix toEqual matcher to use angular.equals instead of simple == comparison, ↵ | Shyam Seshadri | |
| which breaks down for arrays and objects | |||
| 2010-07-23 | fix issues with ie 7 | Misko Hevery | |
| 2010-07-02 | changed the eval for ie to be able to return a function | Misko Hevery | |
| 2010-07-02 | change all attributes from ng- to ng: prefix | Misko Hevery | |
| 2010-05-10 | improved handling of text fields when formater fails to prevent clobering of ↵ | Misko Hevery | |
| field | |||
| 2010-05-07 | xhr bulk fixes | Misko Hevery | |
| 2010-04-27 | resources now use browser mock | Misko Hevery | |
| 2010-04-22 | clean up failing test with jquery | Misko Hevery | |
| 2010-04-22 | fix CI Build | Misko Hevery | |
| 2010-04-22 | tests work under jquery and without | Misko Hevery | |
| 2010-04-22 | working on jQuery passing tests | Misko Hevery | |
| 2010-04-21 | more if tests pass | Misko Hevery | |
| 2010-04-19 | last failing ie test remaining | Misko Hevery | |
| 2010-04-19 | lint | Misko Hevery | |
| 2010-04-19 | ie fixes | Misko Hevery | |
| 2010-04-15 | added $route service | Misko Hevery | |
| 2010-04-12 | tests pass on chrome | Misko Hevery | |
| 2010-04-12 | removed Meta and allowed binding of HTML | Misko Hevery | |
| 2010-04-08 | tests failing jstd to show cory | Misko Hevery | |
| 2010-04-06 | few fixes to make tests pass with jquery | Misko Hevery | |
| 2010-04-05 | added ng:include | Misko Hevery | |
| 2010-04-05 | added ng:switch widget | Misko Hevery | |
| 2010-04-03 | injection is now working | Misko Hevery | |
| 2010-03-31 | all tests green, some dissabled | Misko Hevery | |
| 2010-03-30 | more tests fixed | Misko Hevery | |
| 2010-03-29 | dissabled a lot of tests, and made the core test set pass. | Misko Hevery | |
| 2010-03-15 | added resources; removed compiled code | Misko Hevery | |
| 2010-02-04 | updateView is now called on binder instead of scope | Misko Hevery | |
| 2010-02-04 | consider widget errors only when widgets are visible | Misko Hevery | |
| 2010-02-04 | list formater always should return arry | Misko Hevery | |
| 2010-01-25 | fixes to make it pass on IE | Misko Hevery | |
| 2010-01-23 | lots of cleanup to get it ready for OS | Misko Hevery | |
| 2010-01-18 | checkpoint for integration with angular | Misko Hevery | |
| 2010-01-09 | removed nglr namespace | Misko Hevery | |
| 2010-01-08 | created a way to init the code without autobootstrap | Misko Hevery | |
| 2010-01-05 | angular.js | Adam Abrons | |
