| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-02 | chore(travis): ignore 404 warnings, debug log into file | Vojta Jina | |
| This is a terrible hack/workaround, however I don't think there is any better way to achieve this with log4js. | |||
| 2013-12-02 | docs: update CONTRIBUTING.MD with process for doc fixes | Naomi Black | |
| 2013-12-02 | chore(travis): fix the build id on browser stack | Vojta Jina | |
| This just improves the way BrowserStack groups the sessions. | |||
| 2013-12-02 | chore: use karma-browserstack-launcher from master | Vojta Jina | |
| 2013-12-02 | chore(deps): use regular junit-reporter | Vojta Jina | |
| We don't need the special branch anymore. | |||
| 2013-12-02 | chore(travis): tolerate 2 disconnects to make the build more stable | Vojta Jina | |
| 2013-12-02 | chore(travis): use only websockets and xhr-polling | Vojta Jina | |
| I wanna see more info about BrowserStack... | |||
| 2013-12-02 | chore(grunt): update to latest jshint task | James Brewer | |
| Upgrade JSHint task from ~0.6.4 to ~0.7.2. Two useful changes: ability to set jshintrc option to use jshint's native ability for finding .jshintrc files relative to the linted files and update jshint to 2.3.0. Closes #5143 | |||
| 2013-12-02 | docs($animate): require ngAnimate in example, syntax fixes | Blaise Kal | |
| The example in the section "JavaScript-defined Animations" would not run without the ngAnimate dependency. Also added a missing comma and semicolons. | |||
| 2013-11-28 | chore(docs): fix back-to-top anchor in angularjs.org doc pages | Peter Bacon Darwin | |
| Closes https://github.com/angular/angularjs.org/issues/45 | |||
| 2013-11-27 | docs(tutorial/step-10): fix typo | Levi Weiss | |
| Closes #5171 | |||
| 2013-11-27 | docs($compile): fix missing space | Stéphane Reynaud | |
| 2013-11-27 | docs(tutorial/step-12): fix typo | Ammar | |
| Closes #5148 | |||
| 2013-11-27 | docs(tutorial/step-0): add target="_blank" to open app in new page | magoswiat | |
| Closes #5145 | |||
| 2013-11-27 | docs(form): provide a list of Angular's built-in validation tokens | Blaise Kal | |
| As requested by a top-rated Disqus comment: http://docs.angularjs.org/api/ng.directive:form.FormController#comment-655325797 Closes #5121 | |||
| 2013-11-27 | docs(guide/concepts): fix incorrect module name in example | deepak-kapoor | |
| Closes #5116 | |||
| 2013-11-27 | docs($window): move use of $window to controller | wjtk | |
| Move use of `$window` from template to controller, because accessing `$window` in expressions is now disallowed and doesn't work. Closes #5110 | |||
| 2013-11-27 | docs($injector): use square bracket notation for $inject annotation | Pete Bacon Darwin | |
| Closes #5104 | |||
| 2013-11-27 | docs(guide/di): use square bracket notation for $inject annotation | Evan Winslow | |
| Closes #5104 | |||
| 2013-11-27 | docs(guide/providers): fix typo | Pavel Pomerantsev | |
| Closes #5102 | |||
| 2013-11-27 | docs(guide/compiler): add fourth step on appending the compiled template to ↵ | Marc Lipovsky | |
| the DOM Closes #5087 | |||
| 2013-11-27 | docs(migration): add a note about "private" properties being reverted | rodyhaddad | |
| Closes #5086 | |||
| 2013-11-27 | chore(release): start 1.2.4 wormhole-baster iteration | Peter Bacon Darwin | |
| 2013-11-27 | chore(release): cut 1.2.3 unicorn-zapper releasev1.2.3 | Peter Bacon Darwin | |
| 2013-11-27 | docs(CHANGELOG): add v1.2.3 changes | Peter Bacon Darwin | |
| 2013-11-26 | feat($attrs): add $attrs.$attr to externs so that it isn't renamed | Jeff Cross | |
| This fixes the issue that any usage of $attr is broken after js compilation. | |||
| 2013-11-26 | refactor($location): move file://+win path fix to $location | Jeff Cross | |
| The urlResolve method was fixed to automatically remove the volume label from path names to fix issues with the file protocol on windows where $location.path() was returning paths where the first segment would be the volume name, such as "/C:/mypath". See #4942 and #4928 However, the solution was specific to the $location non- HTML5 mode, and was implemented at a lower level of abstraction than it should have been. This refactor moves the fix to inside of the LocationHashBangUrl $$parse method. Closes #5041 | |||
| 2013-11-26 | chore(release): fix cdn version in package.json | Igor Minar | |
| 2013-11-26 | fix($sanitize): Use same whitelist mechanism as $compile does. | Tobias Bosch | |
| `$sanitize` now uses the same mechanism as `$compile` to validate uris. By this, the validation in `$sanitize` is more general and can be configured in the same way as the one in `$compile`. Changes - Creates the new private service `$$sanitizeUri`. - Moves related specs from `compileSpec.js` into `sanitizeUriSpec.js`. - Refactors the `linky` filter to be less dependent on `$sanitize` internal functions. Fixes #3748. | |||
| 2013-11-26 | chore($httpBackend): preserve original non-zero http status code for file:// ↵ | corrupt | |
| apps Previously if an app was running from file:// origin we would always return either http 200 or 404 depending on whether the response was present. This changes the behavior so that we do this only if the protocol of the request (not the origin) is file:// and only if the status code is 0. Closes #4436 Closes #4587 Closes #4514 | |||
| 2013-11-26 | chore(mocks): wrap angular-mocks.js in closure | David Mosher | |
| Closes #5080 | |||
| 2013-11-26 | chore(changelog): remove tmp file | Peter Bacon Darwin | |
| 2013-11-26 | docs(compile): fix typo | adam77 | |
| Closes #5133 | |||
| 2013-11-26 | docs(CONTRIBUTING): fix broken link to GitHub PR Helper | Deepak Kapoor | |
| Closes #5134 | |||
| 2013-11-26 | docs(guide/scope): access the current element's scope in the console. | smarigowda | |
| Closes #4884 | |||
| 2013-11-26 | refactor(angular.js): improve trim performance | sunnylost | |
| According to Flagrant Badassery's blog http://blog.stevenlevithan.com/archives/faster-trim-javascript and this comparison http://jsperf.com/trim-function, this trim method is faster. Closes #4406 | |||
| 2013-11-25 | chore(travis): add some more info for BrowserStack sessions | Vojta Jina | |
| 2013-11-25 | chore(travis): let's give BrowserStack a try | Vojta Jina | |
| Switch the build to use BrowserStack instead of SauceLabs. This also adds IE11 to our build. | |||
| 2013-11-25 | chore: add script for updating bower repos | Brian Ford | |
| 2013-11-25 | docs(CONTRIBUTING): add link to github-pr-helper | Pete Bacon Darwin | |
| 2013-11-25 | fix(ngAnimate): ensure animations are disabled upon bootstrap for structrual ↵ | Matias Niemelä | |
| animations Closes #5130 | |||
| 2013-11-25 | docs(CONTRIBUTING): fix typo | Pete Bacon Darwin | |
| 2013-11-25 | docs(CONTRIBUTING): highlight what makes a good issue submission | Pete Bacon Darwin | |
| 2013-11-25 | docs(CONTRIBUTING): consolidated submitting PRs sections | Pete Bacon Darwin | |
| 2013-11-23 | fix($animate): ensure blocked keyframe animations are unblocked before the ↵ | Matias Niemelä | |
| DOM operation Closes #5106 | |||
| 2013-11-22 | fix(input): Support form auto complete on modern browser | Tobias Bosch | |
| Although modern browser support the "input" event, they still only fire the "change" event when they auto complete form elements other than the currently selected one. Related to #1460 | |||
| 2013-11-22 | chore(docs): remove Disqus comments | Brian Ford | |
| We don't actively moderate these comments, and they range from out of date, to inflammatory, to spam. Going forward, improvements to the docs should be done via a PR, and questions should go on StackOverflow where they can be curated and kept up to date by AngularJS developers who help out there. | |||
| 2013-11-22 | chore: update copyright year in file headers | Igor Minar | |
| 2013-11-22 | chore(release): start 1.2.3 unicorn-zapper iteration | Igor Minar | |
| 2013-11-22 | chore(release): cut 1.2.2 consciousness-inertia releasev1.2.2 | Igor Minar | |
