Skip to content

Commit d823e96

Browse files
committed
Fix cloning of curve object
1 parent 2f373d4 commit d823e96

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

ForInstalledPython/glow.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GlowScriptOffline/glowscript_libraries/glow.3.0.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GlowScriptOffline3.0.zip

-52 Bytes
Binary file not shown.

ide/ide.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,8 +1383,8 @@ $(function () {
13831383
ev.preventDefault()
13841384
// If I don't pass anything for features, I get a new tab instead
13851385
var features = "titlebar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes"
1386-
window.open("/#/", "GlowScriptRun", features, true)
1387-
window.open(run_link, "GlowScriptRun", features, true)
1386+
window.open("/#/", "GlowScriptRun", features)
1387+
window.open(run_link, "GlowScriptRun", features)
13881388
}
13891389
}
13901390

lib/glow/primitives.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@
507507
var oldargs = {canvas:cvs, pos:pos, __radius:this.__radius,
508508
__shininess:this.__shininess, __emissive:this.__emissive,
509509
visible:true, __pickable:this.__pickable}
510-
ret = new curve(oldargs)
510+
ret = curve(oldargs)
511511
} else if (this instanceof helix) {
512512
var oldargs = {canvas:cvs, __thickness:this.__thickness, __coils:this.__coils,
513513
__shininess:this.__shininess, __emissive:this.__emissive,

package/glow.3.0.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)