Permalink
Browse files

Fix flash of 'Create Account' banner in stream

Add 'ng-cloak' attribute so that 'Create Account' banner
is hidden until the app is loaded.
  • Loading branch information...
robertknight committed Feb 3, 2016
1 parent 431f677 commit 886ff2b30ad4a6bfb1874389f465df41d3ffc1c7
Showing with 1 addition and 1 deletion.
  1. +1 −1 h/templates/app.html.jinja2
@@ -36,7 +36,7 @@
on-change-sort-by="sort.name = sortBy">
</top-bar>
<div class="create-account-banner" ng-if="isSidebar && auth.status === 'signed-out'">
<div class="create-account-banner" ng-if="isSidebar && auth.status === 'signed-out'" ng-cloak>
To annotate this document
<a href="{{ register_url }}" target="_blank">
create a free account

0 comments on commit 886ff2b

Please sign in to comment.