| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-05-13 | chore($sniffer): replace remaining supportsTransitions/supportsAnimations ↵ | Matias Niemelä | |
| flags inside tests | |||
| 2013-05-13 | docs(animation): fix code example to work with most recent ngAnimate | Matias Niemelä | |
| ngAnimate: Rename CSS classes in example code to work with new ngAnimate naming conventions ngInclude: Include animations toggle in ngInclude example code ngAnimate: Remove ms- prefix and fix up CSS animation example code | |||
| 2013-05-11 | fix($browser): should use first value for a cookie. | Chirayu Krishnappa | |
| With this change, $browser.cookies()["foo"] will behave like docCookies.getItem("foo") where docCookies is defined at https://developer.mozilla.org/en-US/docs/DOM/document.cookie This fixes the issue where, if there's a value for the XSRF-TOKEN cookie value with the path /, then that value is used for all applications in the domain even if they set path specific values for XSRF-TOKEN. Closes #2635 | |||
| 2013-05-10 | docs($scope): clarify documentation for $broadcast | willtj | |
| 2013-05-10 | docs(guide): fix a typo | veselinn | |
| 2013-05-10 | fix(ngPluralize): handle the empty string as a valid override | Lucas Galfasó | |
| Fix the check for overrides so it is able to handle the empty string Closes #2575 | |||
| 2013-05-10 | docs(guide): fix typo on model name | Alfred Nutile | |
| 2013-05-09 | docs(Angular.js) move forEach docs to correct place | Alex Pods | |
| 2013-05-09 | style(*): fix up semicolon and var usage | Anatoly Shikolay | |
| 2013-05-09 | docs(tutorial): add comment about injection annotation | Pete Bacon Darwin | |
| Closes: #1163 | |||
| 2013-05-09 | docs($window): fix example | Pete Bacon Darwin | |
| 2013-05-08 | fix(scenario): update to use our angular-scenario.js rather then karma | Misko Hevery | |
| 2013-05-08 | chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active | Matias Niemelä | |
| BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active The CSS transition classes have changed suffixes. To migrate rename .foo-setup {...} to .foo {...} .foo-start {...} to .foo-active {...} or for type: enter, leave, move, show, hide .foo-type-setup {...} to .foo-type {...} .foo-type-start {...} to .foo-type-active {...} | |||
| 2013-05-08 | feat(ngAnimate): Add support for CSS3 Animations with working delays and ↵ | Matias Niemelä | |
| multiple durations | |||
| 2013-05-08 | feat($sniffer): Add support for supportsAnimations flag for detecting CSS ↵ | Matias Niemelä | |
| Animations browser support | |||
| 2013-05-08 | chore(ngIf): Add animation code to ngIf example and docs text to ngAnimate docs | Matias Niemelä | |
| 2013-05-08 | feat(ngdocs): add variable type hinting with colors | Matias Niemelä | |
| 2013-05-08 | refactor($resource): simplify url template expansion | Igor Minar | |
| 2013-05-08 | chore(docs): use done() in gen-docs.js | Igor Minar | |
| 2013-05-08 | test(sortedHtml): ignore bogus rowspan=1 and colspan=1 in IE | Igor Minar | |
| 2013-05-08 | test(sortedHtml): fix comment support in sortedHtml helper | Igor Minar | |
| 2013-05-08 | style($compile): clarify argument name | Igor Minar | |
| 2013-05-08 | fix(angular): do not copy $$hashKey in copy/extend functions. | R. Merkert | |
| Copying the $$hashKey as part of copy/extend operations makes little sense since hashkey is used primarily as an object id, especially in the context of the ngRepeat directive. This change maintains the existing $$hashKey of an object that is being copied into (likewise for extend). It is not uncommon to take an item in a collection, copy it, and then append it to the collection. By copying the $$hashKey, this leads to duplicate object errors with the current ngRepeat. Closes #1875 | |||
| 2013-05-08 | feat($cookieStore): $cookieStore.get now parses blank string as blank string | Illniyar | |
| closes #1918 | |||
| 2013-05-07 | fix(date): correctly format dates with more than 3 sub-second digits | Kevin Wells | |
| This date {{2003-09-10T13:02:03.123456Z | date: yyyy-mm-dd ss} is now treated as having 123.45ms. Previously it had 123456ms so 123 seconds were added to the formatted date. Use local date in unit tests so they work in any time zone | |||
| 2013-05-07 | fix(select): ensure empty option is not lost in IE9 | Chad Smith | |
| Fix a check inside render for select elements with ngOptions, which compares the selected property of an element with it's desired state. Ensure the placeholder, if available, is explicitly selected if the model value can not be found in the option list. Without these fixes it's up to the browser implementation to decide which option to choose. In most browsers, this has the effect of displaying the first item in the list. In IE9 however, this causes the select to display nothing. Closes #2150, #1826 | |||
| 2013-05-07 | fix(dateFilter): correctly format ISODates on Android<=2.1 | Pete Bacon Darwin | |
| In older Android browsers, `undefined` does not act like `0` in some arithmetic operations. This leads to dates being formatted with `NaN` strings in the dateFilter because the implementation of the `dateGetter` function allows offset to be an optional parameter. The fix is to convert offset to 0 if it is undefined. Closes #2277, #2275 | |||
| 2013-05-07 | doc(input): fix small typo in code example | Hamish Macpherson | |
| 2013-05-06 | fix($location): prevent navigation when event isDefaultPrevented | Misko Hevery | |
| 2013-05-06 | docs(injector): add docs for $injector.has | Misko Hevery | |
| 2013-05-03 | feat(ngInclude): $includeContentRequested event | Matthieu Larcher | |
| Adding a $includeContentRequested event in order to better keep track of how many includes are sent and be able to compare it with how many have finished. | |||
| 2013-05-02 | fix($location): compare against actual instead of current URL | Misko Hevery | |
| 2013-05-02 | fix($location): prevent navigation if already on the URL | Misko Hevery | |
| 2013-05-02 | fix(ngAnamite): eval ng-animate expression on each animation | Misko Hevery | |
| 2013-05-02 | feat(injector): add has method for querying | Misko Hevery | |
| Closes #2556 | |||
| 2013-05-02 | fix(ngView): accidentally compiling leaving content | Misko Hevery | |
| closes: #2304 | |||
| 2013-05-02 | fix(ngRepeat): correctly iterate over array-like objects | Gonzalo Ruiz de Villa | |
| Check if the object is array-like to iterate over it like it's done with arrays. Closes #2546 | |||
| 2013-05-02 | fix($rootScope) ensure $watchCollection correctly handles arrayLike objects | Gonzalo Ruiz de Villa | |
| 2013-05-01 | fix($location): back-button should fire $locationChangeStart | quazzie | |
| Before $locationChangeStart event is not broadcast when pressing the back-button on the browser. Closes #2109 | |||
| 2013-05-01 | test(ngAnimate): also provide W3C transition property to work on IE10 | Pete Bacon Darwin | |
| Closes: #2492 | |||
| 2013-05-01 | docs(injector): fix typo | Siddique Hameed | |
| Closes: #2551 | |||
| 2013-04-30 | feat(ngTap): Add a CSS class while the element is held down. | Braden Shepherdson | |
| 2013-04-30 | test(controller): instantiate controller defined on window | Vojta Jina | |
| Just adding a missing spec. | |||
| 2013-04-30 | fix(ngController): allow dots in a controller name | Vojta Jina | |
| The issue was introduced in cd38cbf975b501d846e6149d1d993972a1af0053 | |||
| 2013-04-30 | feat($httpBackend): add timeout support for JSONP requests | David Bennett | |
| Documentation implies that timeout works for all requests, though it only works with XHR. To implement: - Change $httpBackend to set a timeout for JSONP requests which will immediately resolve the request when fired. - Cancel the timeout when requests are completed. | |||
| 2013-04-30 | docs(guide:directive): add directive controller usage | Chris Nicola | |
| Specifically adding a directive controller to the example definition and how to use declare injectables to avoid minification errors. | |||
| 2013-04-30 | style($injector): add a comment to explain the distinction with isArray | Robin Böhm | |
| 2013-04-30 | docs($provide): fix parentheses in example | Eugene Wolfson | |
| 2013-04-29 | feat(ngdocs): support for HTML table generation from docs code | Matias Niemelä | |
| 2013-04-29 | fix(ngController): change controllerAlias to controllerAs. | Misko Hevery | |
