From 35475a8841364eefdccae8ff42de359cf2f66638 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Wed, 13 Nov 2013 19:29:47 +0100 Subject: [PATCH] add semi colon --- IPython/html/static/notebook/js/outputarea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/outputarea.js b/IPython/html/static/notebook/js/outputarea.js index a16560da4..912e2ba3b 100644 --- a/IPython/html/static/notebook/js/outputarea.js +++ b/IPython/html/static/notebook/js/outputarea.js @@ -576,7 +576,7 @@ var IPython = (function (IPython) { OutputArea.prototype.append_png = function (png, md, element) { var toinsert = this.create_output_subarea(md, "output_png"); - var img = $("") + var img = $(""); img[0].setAttribute('src','data:image/png;base64,'+png); if (md['height']) { img[0].setAttribute('height', md['height']);