Commit a17e7e1b authored by Robert Knight's avatar Robert Knight

Remove obsolete `ng-cloak` directives

`ng-cloak` exists to hide Angular templates in the HTML page until they
are processed by Angular's template compiler. This is now unnecessary
since the only thing present in the initial HTML page is the empty
`<hypothesis-app>` element.
parent 4b3c1325
......@@ -15,7 +15,7 @@
on-change-sort-key="vm.setSortKey(sortKey)">
</top-bar>
<div class="create-account-banner" ng-if="vm.isSidebar && vm.auth.status === 'logged-out'" ng-cloak>
<div class="create-account-banner" ng-if="vm.isSidebar && vm.auth.status === 'logged-out'">
To annotate this document
<a href="{{ vm.serviceUrl('signup') }}" target="_blank">
create a free account
......@@ -23,7 +23,7 @@
or <a href="" ng-click="vm.login()">log in</a>
</div>
<div class="content" ng-cloak>
<div class="content">
<login-form
ng-if="vm.accountDialog.visible"
on-close="vm.accountDialog.visible = false">
......
<span class="ng-cloak" dropdown keyboard-nav>
<span dropdown keyboard-nav>
<button
type="button"
class="top-bar__btn"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment