Replace slashes globally
This commit is contained in:
@@ -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" : {
|
||||
|
||||
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user