| Age | Commit message (Collapse) | Author | 
 | 
`template` and `templateUrl` properties can now be optionally defined
via a function. This allows templates to be dynamically generated on
the fly.
 | 
 | 
Sometimes is not desirable to use interpolation on attributes because
the user agent parses them before the interpolation takes place. I.e:
<svg>
  <circle cx="{{cx}}" cy="{{cy}}" r="{{r}}"></circle>
</svg>
The snippet throws three browser errors, one for each attribute.
For some attributes, AngularJS fixes that behaviour introducing special
directives like ng-href or ng-src.
This commit is a more general solution that allows prefixing any
attribute with "ng-attr-", "ng:attr:" or "ng_attr_"  so it will
be set only when the binding is done. The prefix is then removed.
Example usage:
<svg>
  <circle ng-attr-cx="{{cx}}" ng-attr-cy="{{cy}}" ng:attr-r="{{r}}"></circle>
</svg>
Closes #1050
Closes #1925
 | 
 | 
JQLite.ready() used for automatic bootstrapping (when jQuery is not present)
now checks if document already is ready when first called. This simplifies
bootstrapping when the angular script is loaded asynchronously.
However if other scripts with angular app code are being loaded as well
it is developers responsibility to ensure that these scripts are loaded
after angular-loader.js is evaluated and before angular.js script is
evaluated.
 | 
 | 
Replace an obsolete reference to a nonexistent "Creating Widgets"
section with a real link to "Creating Components".
 | 
 | 
If you bind using '=' to a non-existant parent property, the compiler
will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception, which is right
because the model doesn't exist.
This enhancement allow to specify that a binding is optional so it
won't complain if the parent property is not defined. In order to mantain
backward compability, the new behaviour must be specified using '=?' instead
of '='. The local property will be undefined is these cases.
Closes #909
Closes #1435
 | 
 | 
Use double quotes to maintain consistency with other HTML
 | 
 | 
 | 
 | 
previously we barfed on function type definition with optional arguments
like {function(number=)}
this fixes it
I also added a bunch of code that helps to debug incorrectly parsed docs.
 | 
 | 
as of v0.10.6 this is not the case any more
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Update docs/content/tutorial/step_00.ngdoc
removed redundant verb
 | 
 | 
npm install is listed in the dependencies section of the contribute guide but
is missing from the step-by-step. This adds it as step 4.
 | 
 | 
As explained in 'Understanding the Controller Component', Controllers
written for new (post 1.0 RC) versions of Angular need to add methods to
the scope directly, not the function's prototype. Correcting this
example should remove any ambiguity, especially for beginners.
 | 
 | 
As explained in 'Understanding the Controller Component', Controllers
written for new (post 1.0 RC) versions of Angular need to add methods to
the scope directly, not the function's prototype. Correcting this
example should remove any ambiguity, especially for beginners.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Fixes #1799
 | 
 | 
Updated the canonical video to a recent one. Fixed a typo.
 | 
 | 
 | 
 | 
Closes #1021
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
This is a minor edit to allow Plunks created by way of the docs.angularjs.org site to be appropriately tagged as `angularjs`.
Also, make these generated Plunks private by default.
 | 
 | 
Fix syntax and update code to the latest API
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
docs(directive): fix typo
 | 
 | 
Making testacular a dependency to avoid having to install it globally.
(Causes npm issues on some machines)
 | 
 | 
Fix table formatting so headings are bold, rows are separated by lines, and rows have :hover style
 | 
 | 
fixed example app, `simpleAppModule` should have been `myAppModule`.
 | 
 | 
 | 
 | 
previously examples like $http where broken because we would strip part of the
filename (http-hello.html -> http)
we really want to strip only the id suffix that we append to disambiguate
common filenames (like index.html) which appear in many examples.
 |