Skip to content

Commit f77e848

Browse files
authored
Merge pull request #152 from RRosio/dep-updates
Updating JS Dependencies
2 parents 2f7fd12 + 4252336 commit f77e848

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

bower.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"backbone": "components/backbone#~1.2",
66
"bootstrap": "bootstrap#~3.4",
77
"bootstrap-tour": "0.9.0",
8-
"codemirror": "components/codemirror#5.56.0+components1",
8+
"codemirror": "components/codemirror#5.58.2+components1",
99
"create-react-class": "https://cdn.jsdelivr.net/npm/[email protected]/create-react-class.min.js",
1010
"es6-promise": "~1.0",
1111
"font-awesome": "components/font-awesome#~4.7.0",
1212
"google-caja": "5669",
1313
"jed": "~1.1.1",
1414
"jquery": "components/jquery#~3.5.0",
1515
"jquery-typeahead": "~2.10.6",
16-
"jquery-ui": "components/jqueryui#~1.12",
17-
"marked": "~0.7",
16+
"jquery-ui": "jquery/jquery-ui#~1.13.2",
17+
"marked": "~1.1.1",
1818
"MathJax": "^2.7.4",
1919
"moment": "~2.19.3",
2020
"react": "~16.0.0",
2121
"requirejs": "~2.2",
2222
"requirejs-text": "~2.0.15",
2323
"requirejs-plugins": "~1.0.3",
2424
"text-encoding": "~0.1",
25-
"underscore": "components/underscore#~1.8.3",
25+
"underscore": "jashkenas/underscore#~1.13.4",
2626
"xterm.js": "https://unpkg.com/xterm@~3.1.0/dist/xterm.js",
2727
"xterm.js-css": "https://unpkg.com/xterm@~3.1.0/dist/xterm.css",
2828
"xterm.js-fit": "https://unpkg.com/xterm@~3.1.0/dist/addons/fit/fit.js"

nbclassic/templates/page.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>{% block title %}Jupyter Notebook{% endblock %}</title>
88
{% block favicon %}<link id="favicon" rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}">{% endblock %}
99
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
10-
<link rel="stylesheet" href="{{static_url("components/jquery-ui/themes/smoothness/jquery-ui.min.css") }}" type="text/css" />
10+
<link rel="stylesheet" href="{{static_url("components/jquery-ui/dist/themes/smoothness/jquery-ui.min.css") }}" type="text/css" />
1111
<link rel="stylesheet" href="{{static_url("components/jquery-typeahead/dist/jquery.typeahead.min.css") }}" type="text/css" />
1212
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1313

@@ -40,7 +40,7 @@
4040
text: 'components/requirejs-text/text',
4141
bootstrap: 'components/bootstrap/dist/js/bootstrap.min',
4242
bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
43-
'jquery-ui': 'components/jquery-ui/jquery-ui.min',
43+
'jquery-ui': 'components/jquery-ui/dist/jquery-ui.min',
4444
moment: 'components/moment/min/moment-with-locales',
4545
codemirror: 'components/codemirror',
4646
termjs: 'components/xterm.js/xterm',

setupbase.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ def find_package_data():
142142
pjoin(components, "jquery", "jquery.min.js"),
143143
pjoin(components, "jquery-typeahead", "dist", "jquery.typeahead.min.js"),
144144
pjoin(components, "jquery-typeahead", "dist", "jquery.typeahead.min.css"),
145-
pjoin(components, "jquery-ui", "jquery-ui.min.js"),
146-
pjoin(components, "jquery-ui", "themes", "smoothness", "jquery-ui.min.css"),
147-
pjoin(components, "jquery-ui", "themes", "smoothness", "images", "*"),
145+
pjoin(components, "jquery-ui", "dist", "jquery-ui.min.js"),
146+
pjoin(components, "jquery-ui", "dist", "themes", "smoothness", "jquery-ui.min.css"),
147+
pjoin(components, "jquery-ui", "dist", "themes", "smoothness", "images", "*"),
148148
pjoin(components, "marked", "lib", "marked.js"),
149149
pjoin(components, "react", "react.production.min.js"),
150150
pjoin(components, "react", "react-dom.production.min.js"),

tools/build-main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var rjs_config = {
2121
text: 'components/requirejs-text/text',
2222
bootstrap: 'components/bootstrap/dist/js/bootstrap.min',
2323
bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
24-
"jquery-ui": 'components/jquery-ui/jquery-ui.min',
24+
"jquery-ui": 'components/jquery-ui/dist/jquery-ui.min',
2525
moment: 'components/moment/min/moment-with-locales',
2626
codemirror: 'components/codemirror',
2727
xterm: 'components/xterm.js/index',

0 commit comments

Comments
 (0)