We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61999e3 commit dbe6513Copy full SHA for dbe6513
dnotebook/src/public/javascripts/utils.js
@@ -82,7 +82,8 @@ function print_val(val) {
82
}
83
84
function this_div() {
85
- let id = `cell-${window.current_cell.split("-")[1]}`
+ // let id = `out-${window.current_cell.split("-")[1]}`
86
+ let id = `#out_${window.current_cell}`
87
let rand_div_name = `random_div_#${id}`
88
html = `
89
<div class="col-md-1"></div>
@@ -91,7 +92,7 @@ function this_div() {
91
92
<div class="col-md-2"></div>
93
`
94
- $(`#${id}`).append(html)
95
+ $(`${id}`).append(html)
96
return rand_div_name
97
98
0 commit comments