mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 07:25:10 -05:00
don’t fingerprint main.js and ide.js
This commit is contained in:
parent
596fc2525b
commit
e8aad2abb1
2 changed files with 3 additions and 2 deletions
|
@ -194,11 +194,12 @@ html(itemscope, itemtype='http://schema.org/Product')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
script(
|
script(
|
||||||
data-main=buildJsPath('main.js'),
|
data-main=buildJsPath('main.js', {fingerprint:false}),
|
||||||
baseurl=fullJsPath,
|
baseurl=fullJsPath,
|
||||||
src=buildJsPath('libs/require.js')
|
src=buildJsPath('libs/require.js')
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
include contact-us-modal
|
include contact-us-modal
|
||||||
include sentry
|
include sentry
|
||||||
|
|
||||||
|
|
|
@ -136,7 +136,7 @@ block content
|
||||||
window.pdfJsWorkerPath = "#{pdfJsWorkerPath}";
|
window.pdfJsWorkerPath = "#{pdfJsWorkerPath}";
|
||||||
|
|
||||||
script(
|
script(
|
||||||
data-main=buildJsPath("ide.js"),
|
data-main=buildJsPath("ide.js", {fingerprint:false}),
|
||||||
baseurl=fullJsPath,
|
baseurl=fullJsPath,
|
||||||
data-ace-base=buildJsPath('ace', {fingerprint:false}),
|
data-ace-base=buildJsPath('ace', {fingerprint:false}),
|
||||||
src=buildJsPath('libs/require.js')
|
src=buildJsPath('libs/require.js')
|
||||||
|
|
Loading…
Reference in a new issue