X Tutup
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ <h1>My Store</h1>
</a>

<a class="button fancy-button">
<i class="material-icons">shopping_cart</i>Checkout
<em class="material-icons">shopping_cart</em>Checkout
</a>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ <h1>My Store</h1>

<!-- #docregion cart-route -->
<a routerLink="/cart" class="button fancy-button">
<i class="material-icons">shopping_cart</i>Checkout
<em class="material-icons">shopping_cart</em>Checkout
</a>
<!-- #enddocregion cart-route -->
2 changes: 1 addition & 1 deletion aio/src/app/shared/analytics.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface WindowWithAnalytics extends Window {
gtag?(...args: any[]): void;
/** Legacy Universal Analytics `analytics.js` field. */
ga?(...args: any[]): void;
};
}

@Injectable()
/**
Expand Down
2 changes: 1 addition & 1 deletion aio/tools/transforms/templates/api/package.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h2>Entry points</h2>

<h2>{% if doc.isPrimaryPackage %}Primary entry{% else %}Entry{% endif %} point exports</h2>
{% if not doc.hasPublicExports %}
<p><i>No public exports.</i></p>
<p><em>No public exports.</em></p>
{% endif %}
{% include "includes/deprecation.html" %}
{$ listItems(doc.ngmodules, 'NgModules') $}
Expand Down
2 changes: 1 addition & 1 deletion aio/tools/transforms/templates/overview-dump.template.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% import "lib/githubLinks.html" as github -%}
{% import "api/lib/memberHelpers.html" as members -%}
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><i class="material-icons" aria-hidden="true" role="img">code</i></a>{% endmacro %}
{% macro goToCode(doc) %}<a href="{$ github.githubViewHref(doc, versionInfo) $}" class="go-to-code" title="Go to source code"><em class="material-icons" aria-hidden="true" role="img">code</em></a>{% endmacro %}
{% macro label(test, class, text) %}{% if test %}<label class="{$ class $}">{$ text $}</label>{% endif %}{% endmacro %}
{% macro renderLabels(doc) -%}
{$ label(doc.notYetDocumented, 'no-doc', 'UNDOCUMENTED') $}
Expand Down
X Tutup