Skip to content
Snippets Groups Projects
Commit ecb16aab authored by Sean McArthur's avatar Sean McArthur
Browse files

review fixes

- dont escape siteName, we escape it right when we get it
- no longer need site views symlink
- remove ejs lib from /test
parent 807117c5
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
<div class="form_section">
<p class="start">
<%- format(gettext('%s uses Persona instead of usernames to sign you in.'), ["<strong>" + escape(siteName) +"</strong>"]) %>
<%- format(gettext('%s uses Persona instead of usernames to sign you in.'), ["<strong>" + siteName + "</strong>"]) %>
</p>
......
......@@ -9,6 +9,6 @@
</p>
<p>
<%- format(gettext('Click the link in the confirmation email. You\'ll then immediately be signed in to %s.'), ["<strong>" + escape(siteName) + "</strong>"]) %>
<%- format(gettext('Click the link in the confirmation email. You\'ll then immediately be signed in to %s.'), ["<strong>" + siteName + "</strong>"]) %>
</p>
......@@ -68,7 +68,6 @@
<script src="/include.js"></script>
<script src="/common/js/lib/jquery-1.7.1.min.js"></script>
<script src="/common/js/lib/underscore.js"></script>
<script src="/common/js/lib/ejs.js"></script>
<script src="/common/js/lib/gobbledygook.js"></script>
<script src="/common/js/javascript-extensions.js"></script>
<script src="/common/js/lib/bidbundle.js"></script>
......
......@@ -28,7 +28,6 @@ function copy(src, dest) {
}
copy('../node_modules/jwcrypto/bidbundle.js', '../resources/static/common/js/lib/bidbundle.js');
relativeLink('../resources/views', '../resources/static/dialog/views/site');
// generate ephemeral keys
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment