| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-10-08 | fixed leaking constants to gloabal scope | Misko Hevery | |
| 2010-10-08 | change ng:controller to create new scope hence allow nesting | Misko Hevery | |
| 2010-10-07 | Change angular-mocks to throw errors on unexpected gets in the format JSTD ↵ | Shyam Seshadri | |
| now expects | |||
| 2010-10-06 | removing anchor spec and improving jqLite.trigger() method | Igor Minar | |
| - removing the last anchor spec because it can't run reliably in all browsers - improving jqLite.trigger() method | |||
| 2010-10-05 | Fix bug in IE where clone removes whitespace nodes. | Elliott Sprehn | |
| 2010-10-04 | fixed lint warnings | Igor Minar | |
| 2010-10-04 | adding missing spec for 'A' widget | Igor Minar | |
| 2010-10-01 | angular-mocks code should access all global functions via angular | Igor Minar | |
| mocks must use angular.foo because the final build will hide all the normally accessible functions within an anonymous closure. | |||
| 2010-10-01 | 'A' tag widget and ng:click propagation change | Igor Minar | |
| * added a widget for A (anchor) tag, that modifies the default behavior and prevent default action (location change and page reload) for tags with empty href attribute * stopped event propagation for all ng:click handlers | |||
| 2010-10-01 | properly handle event's stopPropagation() and preventDefault() method in IE | Igor Minar | |
| 2010-09-29 | Differentiate between flags and empty keys in $location.hashSearch | Igor Minar | |
| * #foo?key=var&flag&emptyKey= should parse into {key:'val', flag: true, emptyKey: ''} * added docs and spec for parseKeyValue function | |||
| 2010-09-27 | Reworked the cookie synchronization between cookie service, $browser and ↵ | Igor Minar | |
| document.cookie. Now we finally correctly handle situations when browser refuses to set a cookie, due to storage quota or other (file:// protocol) limitations. | |||
| 2010-09-26 | Properly initialize cookie service in order to preserve existing cookies | Igor Minar | |
| - previously the poller initialized the cookie cache too late which was causing previously existing cookies to be deleted by cookie service - refactored the poller api so that the addPollFn returns the added fn - fixed older cookie service tests - removed "this.$onEval(PRIORITY_LAST, update);" because it is not needed | |||
| 2010-09-26 | Added support for functions to $orderBy method | Misko Hevery | |
| http://github.com/angular/angular.js/issues#issue/23 | |||
| 2010-09-23 | cleanup underscore.js form rakefile | Misko Hevery | |
| 2010-09-23 | make date validator use the Date object | Bolek Szewczyk | |
| 2010-09-23 | fix parseInt by adding radix so that it does not default to octal if the ↵ | Misko Hevery | |
| string starts with 0 | |||
| 2010-09-23 | delete unused files (e.g. swfobject and underscore libs) | Bolek Szewczyk | |
| 2010-09-23 | remove TODO.text and add jstd.log to gitignore | Bolek Szewczyk | |
| 2010-09-23 | $cookies service refactoring | Igor Minar | |
| - remove obsolete code in tests - add warning logs when maximum cookie limits (as specified via RFC 2965) were reached - non-string values will now get dropped - after each update $cookies hash will reflect the actual state of browser cookies this means that if browser drops some cookies due to cookie overflow, $cookies will reflect that - $sessionStore got renamed to $cookieStore to avoid name conflicts with html5's sessionStore | |||
| 2010-09-23 | Rewrite session store service in object literal style and remove getAll ↵ | Igor Minar | |
| method that is not used anywhere | |||
| 2010-09-23 | Add JSDoc for the copy() method | Igor Minar | |
| 2010-09-22 | Refactored the Browser: | Misko Hevery | |
| - change from using prototype to inner functions to help with better compression - removed watchers (url/cookie) and introduced a poller concept - moved the checking of URL and cookie into services which register with poolers Benefits: - Smaller minified file - can call $browser.poll() from tests to simulate polling - single place where setTimeout needs to be tested - More testable $browser | |||
| 2010-09-22 | Reduce copies done by Resource. | Alkis Evlogimenos | |
| When a method foo is called on a Resource object, say myResource there are two copies that happen to the resource: - one inside Resource.foo() in some dummy function - another inside myResource.$foo() inside the callback passed to foo() | |||
| 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-09-21 | toJson should serialize inherited properties, but not any properties that ↵ | Igor Minar | |
| start with $ | |||
| 2010-09-21 | fixed test for ng:src which fails on IE, since IE treats undefined src as ↵ | Misko Hevery | |
| url to the current page. | |||
| 2010-09-21 | Upgrade JsTestDriver to 1.2.2 sans annoying 'runTestConfiguration' logging | Igor Minar | |
| 2010-09-21 | Upgrade closure compiler to the latest version | Igor Minar | |
| 2010-09-20 | Add ng:src and ng:href markup. | Alkis Evlogimenos | |
| 2010-09-16 | Expose GET operations on resources as well. This allows us to read | Alkis Evlogimenos | |
| "partials". The pattern is demostrated in the unittest: Resource.query returns a list of "keys" to resources, which are partially defined. They have enough data to allow $get to fetch the whole gamout. Then $get fetches all the details of the resource. | |||
| 2010-09-16 | Allow angular to be included with query parameters. This is a common | Alkis Evlogimenos | |
| pattern for forcing a reload of the script in the browser irrespective of the cache settings the host has. | |||
| 2010-09-16 | Delete requests on resources pass this as data. Delete requests should not ↵ | Misko Hevery | |
| be passing data in the body of the response. The bug is here: http://github.com/angular/angular.js/blob/master/src/Resource.js#L119 Instead of checking for !isGet you should be checking for !isPost. Also isPost should be isPostOrPut since only on those two methods should be sending a payload if I am not mistaken. | |||
| 2010-09-16 | removed unneeded comment | Misko Hevery | |
| 2010-09-14 | merge | Misko Hevery | |
| 2010-09-14 | Fixed all trivial jslint violations | Misko Hevery | |
| 2010-09-14 | Adding cookie service | Misko Hevery | |
| - Browser.cookies() - MockBrowser - $cookie service - $sessionStore | |||
| 2010-09-06 | removed accidental assignment of $element to glabal space | Misko Hevery | |
| 2010-08-18 | remove Parser static | Misko Hevery | |
| 2010-08-18 | converted lexer from function to closure | Misko Hevery | |
| 2010-08-18 | move static field from Lexer to hidden namespace | Misko Hevery | |
| 2010-08-18 | stringify names for better compression, remove dead functions, removed ↵ | Misko Hevery | |
| underscore.js compatibility | |||
| 2010-08-18 | added better handling of ng:format=number | Misko Hevery | |
| 2010-08-16 | adding an expectation to widgetsSpec.js for ng:include | Igor Minar | |
| 2010-08-16 | fix for ng:include does not remove partial if src goes to undefined | Igor Minar | |
| 2010-08-16 | Merge remote branch 'upstream/master' | Igor Minar | |
| 2010-08-16 | removing useless catch that causes troubles when FF throws exceptions within ↵ | iminar | |
| the loop but outside of the try/catch clause | |||
| 2010-08-14 | merge kai/master | Misko Hevery | |
| 2010-08-14 | add ftp script to auto deploy to angularjs.org | Misko Hevery | |
| 2010-08-14 | fix __proto__ for ie. | Misko Hevery | |
