| Age | Commit message (Collapse) | Author | 
 | 
 | 
 | 
When using less than 3 numbers in npm package version together with
tilde interpolation, it lets major version upgrades, e.g. "~0.10" means
at least 0.10 and less than 1.0; this pattern would match e.g. 0.11, 0.12 etc.
Besides, some package.json dependencies were upgraded.
 | 
 | 
Clarify the little snippet on dash vs camelCase html to directive naming pattern
Closes #3550
 | 
 | 
it wasn't clear before that if given the same name a second time this method RETRIEVES an EXISTING module.  Not even sure if my description is accurate, hoping someone will either confirm and merge or clear it up.
Closes #3666
 | 
 | 
 | 
 | 
the <a> is incorrect.
there is no space between "a" and "href"
 | 
 | 
"Orthogonal" is a strange word for those without a mathematical/CS background. "Independent" is clearer.
Closes #3641
 | 
 | 
Changes documentMode test version to 7 in order to support IE 8 in IE 7 standards
mode while still protecting against quirks mode.
documentMode returns the following values:
5 - quirks mode,
7 - IE 7 standards mode,
8 - IE 8 standards mode.
Closes #3633
Closes #3646
 | 
 | 
Removes whitespace before image tag as it caused it to be interpreted as a code block.
Closes #3668
 | 
 | 
The `npm install` command complains about the missing repository field.
Closes #3674
 | 
 | 
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
 | 
 | 
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.
 | 
 | 
Closes #3616
Closes #3675
 | 
 | 
Commit 258cae83dc1a03b6b878a7b4236c499288cd2624 replaced Showdown with marked.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
When annotating a fn, it is wasteful to try to parse a fn that has no arguments
as such fn has no injectable dependencies
 | 
 | 
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.
 | 
 | 
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.
 | 
 | 
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.
 | 
 | 
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.
 | 
 | 
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
 | 
 | 
Closes #3566
 | 
 | 
NOTE: this also includes a temporary work-around for Bower
 | 
 | 
Closes #3568
 | 
 | 
 | 
 | 
Closes #3554
 | 
 | 
Syntax changes:
- ternary indentation
- remove unused variable, N
- use triple equals instead of double
Closes #3559
 | 
 | 
Closes #3583
 | 
 | 
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
 | 
 | 
 | 
 | 
Removed unnecessary additional conditional statement.
 | 
 | 
 | 
 | 
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.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Add missing angular.mock.createMockWindow (removed in
0dd062231a4d495133fd907eeae95c566380c6e1), that the docs tests were
using.
 | 
 | 
Specify hostname/port for connect server to avoid
https://github.com/joyent/libuv/issues/826
 | 
 | 
 | 
 | 
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).
 | 
 | 
 | 
 | 
 | 
 | 
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.
 |