| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-20 | fix(ngTransclude): clear the translusion point before transcluding | Igor Minar | |
| when the transluded content is being teleported to the translusion point, we should ensure that the translusion point is empty before appending otherwise we end up with junk before the transcluded content | |||
| 2013-08-20 | fix(ngTransclude): make the transclusion available to parent post-link | Igor Minar | |
| previously the translusion was appended the the ngTranslude element via $evalAsync which makes the transluded dom unavailable to parent post-linking functions. By appending translusion in linking phase, post-linking functions will be able to access it. | |||
| 2013-08-20 | fix(ngdocs): use cdn version to generate link to source files | James Daily | |
| Closes #3616 Closes #3675 | |||
| 2013-08-20 | docs(sce,urlutils): update table to use marked syntax | Chirayu Krishnappa | |
| Commit 258cae83dc1a03b6b878a7b4236c499288cd2624 replaced Showdown with marked. | |||
| 2013-08-19 | fix($sniffer): ensure older versions of webkit work for animations | Matias Niemelä | |
| 2013-08-19 | revert(ngView): remove ngView manual transclusion system | Matias Niemelä | |
| 2013-08-19 | revert(ngInclude): remove ngInclude manual transclusion system | Matias Niemelä | |
| 2013-08-19 | fix(bower): upgrade to v1.2.0 with fixes we need | Igor Minar | |
| 2013-08-16 | style(docs): replace CRLF by LF in svg header logo | Reto Aebersold | |
| 2013-08-16 | docs($sce): fix parseAsHtml link | Misha Moroshko | |
| 2013-08-16 | fix(docs): wrap error message text inside box | Ken Sheedlo | |
| 2013-08-16 | fix($injector): don't parse fns with no args | Igor Minar | |
| When annotating a fn, it is wasteful to try to parse a fn that has no arguments as such fn has no injectable dependencies | |||
| 2013-08-16 | chore(ngdocs): disable google analytics in e2e tests | Igor Minar | |
| GA is not needed during e2e tests, so I'm removing it to speed up the e2e test suite. See previous commits for more info. | |||
| 2013-08-16 | chore(ngdocs): disable code prettification in e2e tests | Igor Minar | |
| code prettification is expensive and not needed for e2e tests, so I'm disabling it to speed up the e2e test suite. this is a temporary measure, see previous commit for more info. | |||
| 2013-08-16 | chore(ngdocs): disable lunr search during e2e tests | Igor Minar | |
| lunr has been responsible for slowdown in our test suite by adding ~1sec per end-to-end test. (this is because it initializes the index when the app starts) since out test suite primarily tests the examples, it's reasonable do disable the search as a temporary meansure. the real fix is to use protractor and extract all of the examples into standalone apps which can be tested without bootstrapping the whole docs app. | |||
| 2013-08-15 | fix(filter): filter on false properties | Tom Dunstan | |
| Code was evaluating !expression[key] while attempting to see if the key was present, but this was evaluating to true for false values as well as missing keys. Closes #2797. | |||
| 2013-08-15 | fix($parse): handle promises returned from parsed function calls | Jussi Kosunen | |
| When a parsed function call returns a promise, the evaluated value is the resolved value of the promise rather than the promise object. Closes #3503 | |||
| 2013-08-15 | feat(minerr): log minerr doc url in development | Ken Sheedlo | |
| Closes #3566 | |||
| 2013-08-15 | fix(grunt): fix regex in grunt util to handle pre-release versions | Brian Ford | |
| NOTE: this also includes a temporary work-around for Bower | |||
| 2013-08-15 | chore(minerr): move $sce:insecurl file to sce directory | Ken Sheedlo | |
| Closes #3568 | |||
| 2013-08-15 | chore(bower): upgrade bower 1.0.3 -> 1.1.2 | Igor Minar | |
| 2013-08-15 | chore(Grunt): upgrade ng-closure-runner to 0.2.2 | Ken Sheedlo | |
| Closes #3554 | |||
| 2013-08-15 | style($route): make some jshint recommended changes | Josh Taylor | |
| Syntax changes: - ternary indentation - remove unused variable, N - use triple equals instead of double Closes #3559 | |||
| 2013-08-15 | docs($route): add hint for ngRoute module inclusion | Reto Aebersold | |
| Closes #3583 | |||
| 2013-08-15 | docs($cookies): add info about angular-cookies.js | Rob Dodson | |
| per the [top comment here](http://docs.angularjs.org/api/ngCookies.$cookies#comment-912064775) updating documentation so it matches [$resource](http://docs.angularjs.org/api/ngResource.$resource) and instructs the user to include the `angular-cookies.js` and load `ngCookies`. Closes #3607 | |||
| 2013-08-15 | docs($interpolate): fix example for provider w/ custom symbols | Igor Minar | |
| 2013-08-14 | fix(orderBy): remove redundant if statement | ItsLeeOwen | |
| Removed unnecessary additional conditional statement. | |||
| 2013-08-14 | fix(tutorial): fix broken link caused by bad line break | ebeal | |
| 2013-08-14 | fix($timeout): clean deferreds immediately after callback exec/cancel | Andy Gurden | |
| Make sure $timeout callbacks are forgotten about immediately after execution or cancellation. Previously when passing invokeApply=false, the cleanup used $q and so would be pending until the next $digest was triggered. This does not make a large functional difference, but can be very visible when looking at memory consumption of an app or debugging around the $$asyncQueue - these callbacks can have a big retaining tree. | |||
| 2013-08-14 | docs($http): added return to interceptors success callback | Mikk Kirstein | |
| 2013-08-14 | test(docs): don't mock out window unnecessarily | Igor Minar | |
| 2013-08-14 | chore(ngdocs): fixup the docs version switcher | Igor Minar | |
| 2013-08-14 | chore(travis): add docgen unit tests to Travis build | Vojta Jina | |
| 2013-08-14 | test(docs): add missing createMockWindow() | Vojta Jina | |
| Add missing angular.mock.createMockWindow (removed in 0dd062231a4d495133fd907eeae95c566380c6e1), that the docs tests were using. | |||
| 2013-08-14 | chore: fix Travis build | Vojta Jina | |
| Specify hostname/port for connect server to avoid https://github.com/joyent/libuv/issues/826 | |||
| 2013-08-14 | chore(travis): cleanup travis_build.sh | Vojta Jina | |
| 2013-08-13 | chore: disable npm install on Travis | Vojta Jina | |
| Grunt is configured to run `npm install` before every task. That is convenient when switching a branch for example. On Travis, this makes no sense and is causing tons of NPM warnings (eg. packages not defining repository field etc). | |||
| 2013-08-13 | chore: update Node.js on Travis | Vojta Jina | |
| 2013-08-13 | chore: update Karma to v0.10 | Vojta Jina | |
| 2013-08-13 | chore(sauce): use tunnel-identifier and ready-file only on Travis | Vojta Jina | |
| When running locally, there's not TRAVIS_JOB_NUMBER env variable defined and it screws the Sauce Connect (it uses a tunnel with empty name), this makes it work locally without defining TRAVIS_JOB_NUMBER env variable. Also, if you run the sauce_connect_setup.sh locally, without having SAUCE_CONNECT_READY_FILE, it does not pass the `--ready-file` argument to avoid Sauce Connect blowing up. | |||
| 2013-08-13 | chore(grunt): ensure that grunt uses zip for compression | Igor Minar | |
| 2013-08-13 | docs(tutorial): fix links to ngRoute module | Vojta Jina | |
| 2013-08-13 | chore($parse): remove duplicate comment line | Igor Minar | |
| 2013-08-13 | chore(release): version bump | Igor Minar | |
| 2013-08-13 | docs(CHANGELOG): update changelog | Igor Minar | |
| 2013-08-13 | chore(release): cut 1.2.0rc1 spooky-giraffev1.2.0rc1 | Igor Minar | |
| 2013-08-13 | chore(grunt): support RCs in version numbers | Igor Minar | |
| 2013-08-13 | docs(CHANGELOG): release notes for 1.2.0-rc1 spooky-giraffe | Igor Minar | |
| 2013-08-13 | chore(mocks): remove obsolte createMockWindow api | Igor Minar | |
| we never released this api, so it's safe to remove | |||
| 2013-08-13 | chore(changelog.js): pickup breaking changes f/ chore/refactor commits | Igor Minar | |
