Skip to content

Commit 10c683c

Browse files
committed
DDox: Fix fall-back JS code for loading jQuery
The escapes may have been needed at some point, but now they appear verbatim in the output, breaking the code.
1 parent 338f279 commit 10c683c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpl-docs/views/layout.dt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ html(lang='en-US')
229229
script(type='text/javascript', src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js')
230230
|
231231
script(type='text/javascript').
232-
window.jQuery || document.write('\\x3Cscript src="#{root_dir}js/jquery-1.7.2.min.js">\\x3C/script>')
232+
window.jQuery || document.write('\x3Cscript src="#{root_dir}js/jquery-1.7.2.min.js">\x3C/script>')
233233
|
234234
script(type='text/javascript', src='#{root_dir}js/codemirror-compressed.js')
235235
|

0 commit comments

Comments
 (0)