aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-08-20fix(ngTransclude): clear the translusion point before transcludingIgor 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-20fix(ngTransclude): make the transclusion available to parent post-linkIgor 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-20fix(ngdocs): use cdn version to generate link to source filesJames Daily
Closes #3616 Closes #3675
2013-08-20docs(sce,urlutils): update table to use marked syntaxChirayu Krishnappa
Commit 258cae83dc1a03b6b878a7b4236c499288cd2624 replaced Showdown with marked.
2013-08-19fix($sniffer): ensure older versions of webkit work for animationsMatias Niemelä
2013-08-19revert(ngView): remove ngView manual transclusion systemMatias Niemelä
2013-08-19revert(ngInclude): remove ngInclude manual transclusion systemMatias Niemelä
2013-08-19fix(bower): upgrade to v1.2.0 with fixes we needIgor Minar
2013-08-16style(docs): replace CRLF by LF in svg header logoReto Aebersold
2013-08-16docs($sce): fix parseAsHtml linkMisha Moroshko
2013-08-16fix(docs): wrap error message text inside boxKen Sheedlo
2013-08-16fix($injector): don't parse fns with no argsIgor 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-16chore(ngdocs): disable google analytics in e2e testsIgor 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-16chore(ngdocs): disable code prettification in e2e testsIgor 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-16chore(ngdocs): disable lunr search during e2e testsIgor 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-15fix(filter): filter on false propertiesTom 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-15fix($parse): handle promises returned from parsed function callsJussi 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-15feat(minerr): log minerr doc url in developmentKen Sheedlo
Closes #3566
2013-08-15fix(grunt): fix regex in grunt util to handle pre-release versionsBrian Ford
NOTE: this also includes a temporary work-around for Bower
2013-08-15chore(minerr): move $sce:insecurl file to sce directoryKen Sheedlo
Closes #3568
2013-08-15chore(bower): upgrade bower 1.0.3 -> 1.1.2Igor Minar
2013-08-15chore(Grunt): upgrade ng-closure-runner to 0.2.2Ken Sheedlo
Closes #3554
2013-08-15style($route): make some jshint recommended changesJosh Taylor
Syntax changes: - ternary indentation - remove unused variable, N - use triple equals instead of double Closes #3559
2013-08-15docs($route): add hint for ngRoute module inclusionReto Aebersold
Closes #3583
2013-08-15docs($cookies): add info about angular-cookies.jsRob 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-15docs($interpolate): fix example for provider w/ custom symbolsIgor Minar
2013-08-14fix(orderBy): remove redundant if statementItsLeeOwen
Removed unnecessary additional conditional statement.
2013-08-14fix(tutorial): fix broken link caused by bad line breakebeal
2013-08-14fix($timeout): clean deferreds immediately after callback exec/cancelAndy 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-14docs($http): added return to interceptors success callbackMikk Kirstein
2013-08-14test(docs): don't mock out window unnecessarilyIgor Minar
2013-08-14chore(ngdocs): fixup the docs version switcherIgor Minar
2013-08-14chore(travis): add docgen unit tests to Travis buildVojta Jina
2013-08-14test(docs): add missing createMockWindow()Vojta Jina
Add missing angular.mock.createMockWindow (removed in 0dd062231a4d495133fd907eeae95c566380c6e1), that the docs tests were using.
2013-08-14chore: fix Travis buildVojta Jina
Specify hostname/port for connect server to avoid https://github.com/joyent/libuv/issues/826
2013-08-14chore(travis): cleanup travis_build.shVojta Jina
2013-08-13chore: disable npm install on TravisVojta 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-13chore: update Node.js on TravisVojta Jina
2013-08-13chore: update Karma to v0.10Vojta Jina
2013-08-13chore(sauce): use tunnel-identifier and ready-file only on TravisVojta 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-13chore(grunt): ensure that grunt uses zip for compressionIgor Minar
2013-08-13docs(tutorial): fix links to ngRoute moduleVojta Jina
2013-08-13chore($parse): remove duplicate comment lineIgor Minar
2013-08-13chore(release): version bumpIgor Minar
2013-08-13docs(CHANGELOG): update changelogIgor Minar
2013-08-13chore(release): cut 1.2.0rc1 spooky-giraffev1.2.0rc1Igor Minar
2013-08-13chore(grunt): support RCs in version numbersIgor Minar
2013-08-13docs(CHANGELOG): release notes for 1.2.0-rc1 spooky-giraffeIgor Minar
2013-08-13chore(mocks): remove obsolte createMockWindow apiIgor Minar
we never released this api, so it's safe to remove
2013-08-13chore(changelog.js): pickup breaking changes f/ chore/refactor commitsIgor Minar