We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc998a commit 8aed994Copy full SHA for 8aed994
1 file changed
notebookjs/src/public/javascripts/index.js
@@ -43,11 +43,12 @@ $("#div-1")
43
44
45
function exec_cell(c_id) {
46
- $(`#out_${id}`).html("")
47
let id = c_id.split("_")[1]
48
let count = c_id.split("-")[1]
49
window.current_cell = id;
50
+ $(`#out_${id}`).html("")
51
+
52
try {
53
let output = ("global", eval)(vars_in_scope[id].getValue())
54
if (Array.isArray(output)) {
0 commit comments