Replace slashes globally

This commit is contained in:
James Allen 2014-07-09 11:17:16 +01:00
parent 6d10c186ad
commit 488f33d3d0
2 changed files with 7 additions and 7 deletions

View file

@ -77,13 +77,13 @@ block content
script(src='/socket.io/socket.io.js')
//- We need to do .replace(/\//, '\\/') do that '</script>' -> '<\/script>'
//- We need to do .replace(/\//g, '\\/') do that '</script>' -> '<\/script>'
//- and doesn't prematurely end the script tag.
script(type='text/javascript').
window.project_id = "!{project_id}"
window.sharelatex = !{JSON.stringify(sharelatex).replace(/\//, '\\/')};
window.userSettings = !{JSON.stringify(userSettings).replace(/\//, '\\/')};
window.user = !{JSON.stringify(user).replace(/\//, '\\/')};
window.sharelatex = !{JSON.stringify(sharelatex).replace(/\//g, '\\/')};
window.userSettings = !{JSON.stringify(userSettings).replace(/\//g, '\\/')};
window.user = !{JSON.stringify(user).replace(/\//g, '\\/')};
window.csrfToken = "!{csrfToken}";
window.requirejs = {
"paths" : {

View file

@ -1,12 +1,12 @@
extends ../layout
block content
//- We need to do .replace(/\//, '\\/') do that '</script>' -> '<\/script>'
//- We need to do .replace(/\//g, '\\/') do that '</script>' -> '<\/script>'
//- and doesn't prematurely end the script tag.
script(type="text/javascript").
window.data = {
projects: !{JSON.stringify(projects).replace(/\//, '\\/')},
tags: !{JSON.stringify(tags).replace(/\//, '\\/')}
projects: !{JSON.stringify(projects).replace(/\//g, '\\/')},
tags: !{JSON.stringify(tags).replace(/\//g, '\\/')}
};
window.algolia = {
institutions: {