angular/modules
Alex Rickabaugh e94270946a feat(compiler): Support $baseUrl in HTML attributes when loading a template.
Angular fetches template HTML files outside of the browser's normal parsing flow. As a result, URLs in template files are interpreted relative to the root application, when the components defined by the template files are inserted into the DOM. This change enables a template author to prefix URLs with the string $baseUrl, which will be replaced with the relative base path of the template file.

So for an example template loaded from /component/foo/template.html:

<img src="$baseUrl/logo.png" />

becomes:

<img src="/component/foo/logo.png" />

Addresses #2384.
2015-07-20 15:26:00 -07:00
..
angular2 feat(compiler): Support $baseUrl in HTML attributes when loading a template. 2015-07-20 15:26:00 -07:00
angular2_material chore: cleanup to pubspec.yaml files 2015-07-17 12:34:06 -07:00
benchmarks chore: cleanup to pubspec.yaml files 2015-07-17 12:34:06 -07:00
benchmarks_external feat(pipes): add number (decimal, percent, currency) pipes 2015-07-09 14:59:57 -07:00
benchpress chore: cleanup to pubspec.yaml files 2015-07-17 12:34:06 -07:00
examples chore: cleanup to pubspec.yaml files 2015-07-17 12:34:06 -07:00
rtts_assert docs(modules): fix typos 2015-07-07 16:14:43 -07:00