var IPython = (function (IPython) { var PrintWidget = function () { }; PrintWidget.prototype.print_notebook = function () { var w = window.open('', '_blank', 'scrollbars=1,menubar=1'); var html = '' + $('head').clone().html() + '' + '' + $('#notebook').clone().html() + ''; w.document.open(); w.document.write(html); w.document.close(); return false; }; IPython.PrintWidget = PrintWidget; return IPython; }(IPython));