BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
4cf16426
Commit
4cf16426
authored
Mar 29, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-jquery-from-notebook-viewer' into 'master'
Remove jQuery from IPython notebook viewer See merge request !10315
parents
5d3adcf2
bcebae31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
index.js
app/assets/javascripts/blob/notebook/index.js
+10
-6
No files found.
app/assets/javascripts/blob/notebook/index.js
View file @
4cf16426
...
...
@@ -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