fix bad logic

This commit is contained in:
Matthias BUSSONNIER 2013-02-12 21:32:17 +01:00
parent fc2ee6289b
commit bd59389626

View File

@ -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
}