mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
fix bad logic
This commit is contained in:
parent
fc2ee6289b
commit
bd59389626
@ -331,10 +331,10 @@ var IPython = (function (IPython) {
|
||||
for(var type_i in OutputArea.display_order){
|
||||
var type = OutputArea.display_order[type_i];
|
||||
if(json[type] != undefined ){
|
||||
if(type != 'javascript' && dynamic){
|
||||
this['append_'+type](json[type],element)
|
||||
} else {
|
||||
if(type == 'javascript' && dynamic){
|
||||
this.append_javascript(json.javascript, element, dynamic);
|
||||
} else {
|
||||
this['append_'+type](json[type],element)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user