Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Fixed the headings for Changes to your code table #13456

Closed
wants to merge 1 commit into from
Closed
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
16 changes: 10 additions & 6 deletions docs/content/guide/$location.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -770,11 +770,13 @@ then uses the information it obtains to compose hashbang URLs (such as
<td>$location.search(search)</td>
</tr>

<thead>
<tr class="head">
<td>Navigation outside the app</td>
<td>Use lower level API</td>
<th>Navigation outside the app</th>
<th>Use lower level API</th>
</tr>

</thead>

<tr>
<td>$location.href = value<br />$location.update(value)</td>
<td>$window.location.href = value</td>
Expand All @@ -785,11 +787,13 @@ then uses the information it obtains to compose hashbang URLs (such as
<td>$window.location[protocol | host | port | path | search]</td>
</tr>

<thead>
<tr class="head">
<td>Read access</td>
<td>Change to</td>
<th>Read access</th>
<th>Change to</th>
</tr>

</thead>

<tr>
<td>$location.hashPath</td>
<td>$location.path()</td>
Expand Down