Display HTML in pager if supplied

This is still an interim measure until the generic 'put a mimebundle on
the page' machinery can easily be used here.
This commit is contained in:
Thomas Kluyver 2015-07-12 11:20:37 -05:00
parent 44af0e2b6b
commit b8b3c6152d

View File

@ -82,8 +82,13 @@ define([
});
this.events.on('open_with_text.Pager', function (event, payload) {
// FIXME: support other mime types
if (payload.data['text/plain'] && payload.data['text/plain'] !== "") {
// FIXME: support other mime types with generic mimebundle display
// mechanism
if (payload.data['text/html'] && payload.data['text/html'] !== "") {
that.clear();
that.expand();
that.append(payload.data['text/html']);
} else if (payload.data['text/plain'] && payload.data['text/plain'] !== "") {
that.clear();
that.expand();
that.append_text(payload.data['text/plain']);