Skip to content

Commit 33f51bc

Browse files
authored
Merge pull request #71 from jcoady/master
Jupyterlab vpython 7.6.1 updates
2 parents ac8aa6b + 023a843 commit 33f51bc

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

labextension/vpython/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vpython",
3-
"version": "0.4.6",
3+
"version": "0.4.9",
44
"description": "VPython extension for Jupyterlab",
55
"keywords": [
66
"jupyter",
@@ -33,12 +33,12 @@
3333
"watch": "tsc -w"
3434
},
3535
"dependencies": {
36-
"@jupyterlab/application": "^1.1.3",
37-
"@jupyterlab/apputils": "^1.1.3",
38-
"@jupyterlab/coreutils": "^3.1.0",
39-
"@jupyterlab/docregistry": "^1.1.3",
40-
"@jupyterlab/notebook": "^1.1.3",
41-
"@phosphor/disposable": "^1.3.0",
36+
"@jupyterlab/application": "^1.2.1",
37+
"@jupyterlab/apputils": "^1.2.1",
38+
"@jupyterlab/coreutils": "^3.2.0",
39+
"@jupyterlab/docregistry": "^1.2.1",
40+
"@jupyterlab/notebook": "^1.2.2",
41+
"@phosphor/disposable": "^1.3.1",
4242
"script-loader": "^0.7.2"
4343
},
4444
"devDependencies": {

labextension/vpython/src/glowcommlab.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import 'script-loader!./vpython_libraries/jquery.min.js';
2-
import 'script-loader!./vpython_libraries/jquery-ui.custom.min.js';
3-
import 'script-loader!./vpython_libraries/glow.min.js';
4-
import 'script-loader!./vpython_libraries/plotly.min.js';
1+
import 'script-loader!../vpython_libraries/jquery.min.js';
2+
import 'script-loader!../vpython_libraries/jquery-ui.custom.min.js';
3+
import 'script-loader!../vpython_libraries/glow.min.js';
4+
import 'script-loader!../vpython_libraries/plotly.min.js';
55
import '../style/jquery-ui.custom.css'
66
import '../style/ide.css'
77

@@ -202,7 +202,7 @@ cylinder = vp_cylinder
202202
pyramid = vp_pyramid
203203
cone = vp_cone
204204
helix = vp_helix
205-
ellipsoid = vp_ellipsoid
205+
//ellipsoid = vp_ellipsoid // This line causes a big problem in jupyterlab vpython extension
206206
ring = vp_ring
207207
arrow = vp_arrow
208208
compound = vp_compound
@@ -1042,4 +1042,4 @@ function handle_attrs(dattrs) {
10421042
}
10431043
console.log("END OF GLOWCOMM")
10441044

1045-
//});
1045+
//});

0 commit comments

Comments
 (0)