Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bcebae31
Commit
bcebae31
authored
Mar 29, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove jQuery from IPython notebook viewer
parent
76a15db4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
app/assets/javascripts/blob/notebook/index.js
app/assets/javascripts/blob/notebook/index.js
+10
-6
No files found.
app/assets/javascripts/blob/notebook/index.js
View file @
bcebae31
...
...
@@ -63,16 +63,20 @@ export default () => {
},
},
mounted
()
{
$
(
'
<link>
'
,
{
rel
:
'
stylesheet
'
,
type
:
'
text/css
'
,
href
:
gon
.
katex_css_url
,
}).
appendTo
(
'
head
'
);
if
(
gon
.
katex_css_url
)
{
const
katexStyles
=
document
.
createElement
(
'
link
'
);
katexStyles
.
setAttribute
(
'
rel
'
,
'
stylesheet
'
);
katexStyles
.
setAttribute
(
'
href
'
,
gon
.
katex_css_url
);
document
.
head
.
appendChild
(
katexStyles
);
}
if
(
gon
.
katex_js_url
)
{
$
.
getScript
(
gon
.
katex_js_url
,
()
=>
{
const
katexScript
=
document
.
createElement
(
'
script
'
);
katexScript
.
addEventListener
(
'
load
'
,
()
=>
{
this
.
loadFile
();
});
katexScript
.
setAttribute
(
'
src
'
,
gon
.
katex_js_url
);
document
.
head
.
appendChild
(
katexScript
);
}
else
{
this
.
loadFile
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment